import { type SVGAttributes } from 'react'; export type PictogramMode = 'base' | 'mono' | 'duo'; export type PictogramProps = SVGAttributes & { /** * SVG copyright year */ copyrightYear?: string; /** * Pictogram mode */ mode?: PictogramMode; /** * Tag to render */ tag?: keyof JSX.IntrinsicElements; /** * SVG viewBox height */ viewBoxHeight?: number; /** * SVG viewBox width */ viewBoxWidth?: number; };