import { StitchedCSS, Color } from '~/theme' import { PropsEventHandler } from '~/types' import { SVGProps } from 'react' export type SvgElementProperties = SVGProps // SvgElementProperties & export type IconProps = { width?: number height?: number css?: StitchedCSS color?: Color onClick?: PropsEventHandler }