@tabler/icons-react
Version:
A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.
7 lines (4 loc) • 336 B
TypeScript
import * as react from 'react';
import { IconNode, IconProps, Icon } from './types.js';
declare const createReactComponent: (type: "outline" | "filled", iconName: string, iconNamePascal: string, iconNode: IconNode) => react.ForwardRefExoticComponent<IconProps & react.RefAttributes<Icon>>;
export { createReactComponent as default };