/** The Hanzo mark from the press kit. export interface HanzoLogoProps { /** Rendered square size in px. Nav/footer use 22; hero lockups 80. */ size?: number; /** white on dark surfaces (default), black on light, inherit to take currentColor. */ variant?: 'white' | 'black' | 'inherit'; title?: string; } export function HanzoLogo(props: HanzoLogoProps): JSX.Element; export interface HanzoWordmarkProps extends HanzoLogoProps { label?: string } export function HanzoWordmark(props: HanzoWordmarkProps): JSX.Element;