spb/zyquo-cloud-web Public MIT
Zyquo Cloud Web — every cloud model, one beautiful chat, entirely in your browser.
TypeScript 81.9%
CSS 8.9%
JavaScript 7.5%
Shell 1.1%
HTML 0.6%
1/*2 * ZyquoGlyph.tsx3 * Zyquo Cloud Web4 *5 * Author: Simon-Pierre Boucher6 * Mail: contact@spboucher.ai7 *8 * The Zyquo brand mark — the chunky Z with the block caret, reproduced 1:19 * from the native CloudZGlyph (1024 grid, tight box 503×509). Single-tint10 * via currentColor; defaults to the accent token.11 */1213export default function ZyquoGlyph({14 size = 22,15 color = 'var(--z-accent)',16}: {17 size?: number18 color?: string19}) {20 return (21 <svg22 width={size}23 height={size * 1.0119}24 viewBox="0 0 503 509"25 xmlns="http://www.w3.org/2000/svg"26 style={{ color }}27 aria-label="Zyquo"28 >29 <g transform="translate(-267,-257)" fill="none" stroke="currentColor">30 <path31 d="M320 310H704L320 700H556"32 strokeWidth="106"33 strokeLinecap="round"34 strokeLinejoin="round"35 />36 <rect x="653" y="585" width="104" height="168" rx="24" fill="currentColor" stroke="none" />37 </g>38 </svg>39 )40}41