import { type SVGAttributes } from 'react'; export type Align = 'left' | 'center' | 'right'; export type SymbolProps = Omit, 'offset' | 'mode'> & { /** * SVG alignment */ align?: Align; /** * Symbol copyright year */ copyrightYear?: string; /** * Symbol offset alignment array i.e. [left, center, right] */ offset?: (number | null)[]; /** * Tag to render */ tag?: keyof JSX.IntrinsicElements; /** * SVG viewBox height */ viewBoxHeight?: number; /** * SVG viewBox width */ viewBoxWidth?: number; };