import { cn } from "@/lib/utils";
interface BrandMarkProps {
size?: number;
className?: string;
/** Beats the heart glyph and makes the curve glow - used for the dashboard hero mark. */
animated?: boolean;
}
/** Inline twin of app/icon.svg (the favicon) - kept as markup, not an , so it can be sized/animated with CSS. */
export function BrandMark({ size = 28, className, animated = false }: BrandMarkProps) {
return (
);
}