| 4 | import type { Assign, ForwardRef } from './types' |
| 5 | |
| 6 | export interface SVGProps |
| 7 | extends Assign<SVGAttributes<SVGElement>, BoxOwnProps> { |
| 8 | size?: number | string |
| 9 | } |
| 10 | |
| 11 | export const SVG: ForwardRef<SVGSVGElement, SVGProps> = React.forwardRef( |
| 12 | function SVG({ size = 24, ...rest }, ref) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…