8 lines
280 B
TypeScript
8 lines
280 B
TypeScript
import { FunctionalComponent } from 'vue';
|
|
import { AntdIconProps } from '../components/AntdIcon';
|
|
export interface ApiTwoToneIconType extends FunctionalComponent<AntdIconProps> {
|
|
displayName: string;
|
|
}
|
|
declare const ApiTwoTone: ApiTwoToneIconType;
|
|
export default ApiTwoTone;
|