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