Files
ThingsGateway/doc/src/components/iconfonts/IconXinzeng.d.ts
Kimdiego2098 98ae8e692e 添加文档
2024-04-17 12:20:01 +08:00

13 lines
279 B
TypeScript

/* eslint-disable */
import { SVGAttributes, FunctionComponent } from 'react';
interface Props extends Omit<SVGAttributes<SVGElement>, 'color'> {
size?: number;
color?: string | string[];
}
declare const IconXinzeng: FunctionComponent<Props>;
export default IconXinzeng;