@fluent-windows/icons
Version:
Fluent-Windows Svg Icons.
9 lines (8 loc) • 355 B
TypeScript
import * as React from 'react';
export interface JSX {
type: keyof React.ReactSVG;
props?: (React.ClassAttributes<SVGElement> & React.SVGAttributes<SVGElement>) | null;
children: JSX[];
}
declare function createIcon(jsx: JSX, componentName: string): React.ForwardRefExoticComponent<React.RefAttributes<SVGElement>>;
export default createIcon;