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