import type { HTMLAttributes } from "corvos/plugins/jsx.ts";
import site from "@/corvos.config.ts";
export type Props = HTMLAttributes<"a"> & {
size?: "sm" | "lg";
variant?: "static-black" | "static-white";
};
export const Logo = async ({ size, variant, class: cls, ...props }: Props) => {
const symbols = await site.load("assets/symbols.svg").one();
return (
);
};