UNPKG

491 BTypeScriptView Raw
1import { FunctionalComponent } from 'vue';
2import { IconBaseProps } from './Icon';
3export interface CustomIconOptions {
4 scriptUrl?: string | string[];
5 extraCommonProps?: {
6 [key: string]: any;
7 };
8}
9export interface IconFontProps extends IconBaseProps {
10 type: string;
11}
12export interface IconFontType extends FunctionalComponent<IconFontProps> {
13 displayName: string;
14}
15export default function create(options?: CustomIconOptions): FunctionalComponent<IconFontProps>;