import type { SVGProps } from "react"; interface PaperclipLockupProps extends Omit, "children"> { decorative?: boolean; title?: string; } /** * The full Paperclip lockup — mark plus wordmark — from the brand asset * (`paperclip_lockup_dark_mode alt.svg`). The export is white-filled for dark * chrome; here every path fills `currentColor`, so the one geometry follows * the theme the way the brand system expects ("one vocabulary, two surfaces"). * The viewBox is cropped to the artwork's content bounds — the export carries * stage padding that would render the lockup at a third of its container. * * Size it with a height class (`h-5 w-auto`); width follows the aspect. */ export function PaperclipLockup({ decorative = false, title = "Paperclip", className, ...rest }: PaperclipLockupProps) { return ( ); }