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