/** * Inline SVG brand mark for FlatRender. * * Icon meaning: * • Blue rounded square = the platform * • White play triangle = video / rendering * • Three stacked bars = flat-design layers / composition * * Rendered inline so it works without a network request and * inherits the correct colour in both light and dark contexts. */ interface LogoMarkProps { /** Pixel size of the square icon (default 36) */ size?: number; className?: string; } export function LogoMark({ size = 36, className }: LogoMarkProps) { return ( {/* Blue rounded background */} {/* Play triangle */} {/* Flat-design layer bars (decreasing width, right side) */} ); }