13 lines
357 B
TypeScript
13 lines
357 B
TypeScript
import * as React from 'react';
|
|
import { IconBaseProps } from './Icon';
|
|
export interface CustomIconOptions {
|
|
scriptUrl?: string;
|
|
extraCommonProps?: {
|
|
[key: string]: any;
|
|
};
|
|
}
|
|
export interface IconFontProps extends IconBaseProps {
|
|
type: string;
|
|
}
|
|
export default function create(options?: CustomIconOptions): React.SFC<IconFontProps>;
|