import { cn } from "@/lib/cn";
type BrandMarkProps = {
className?: string;
inverted?: boolean;
};
export function BrandMark({ className, inverted = false }: BrandMarkProps) {
return (
M
);
}
type BrandLockupProps = BrandMarkProps & {
subtitle: string;
compact?: boolean;
textClassName?: string;
};
export function BrandLockup({ subtitle, compact, className, textClassName }: BrandLockupProps) {
return (
);
}