UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

10 lines (9 loc) 275 B
import * as React from 'react'; import { IconProps } from './index'; export interface CustomIconOptions { scriptUrl?: string; extraCommonProps?: { [key: string]: any; }; } export default function create(options?: CustomIconOptions): React.SFC<IconProps>;