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