mirror of
https://gitee.com/ThingsGateway/ThingsGateway.git
synced 2025-11-01 16:13:59 +08:00
13 lines
279 B
TypeScript
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;
|