UNPKG

iconista

Version:

Thousands of SVG icons with one React component

8 lines (7 loc) 211 B
import React from 'react'; import { Icon } from './types'; export type Props = Icon & React.SVGAttributes<any> & { getUrl?: (icon: Icon) => string; }; declare const Svg: React.FC<Props>; export default Svg;