/* * ZyquoGlyph.tsx * Zyquo Cloud Web * * Author: Simon-Pierre Boucher * Mail: contact@spboucher.ai * * The Zyquo brand mark — the chunky Z with the block caret, reproduced 1:1 * from the native CloudZGlyph (1024 grid, tight box 503×509). Single-tint * via currentColor; defaults to the accent token. */ export default function ZyquoGlyph({ size = 22, color = 'var(--z-accent)', }: { size?: number color?: string }) { return ( ) }