UNPKG

react-svg-sprites

Version:

Extension to generate SVG sprites and provide an Icon component

14 lines (10 loc) 255 B
import React from 'react'; interface SpriteIconProps { className?: string; width: number | string; height: number | string; file: string; symbol: string; } declare const SpriteIcon: React.FC<SpriteIconProps>; export { SpriteIcon };