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