@acrool/react-iconsvg
Version:
icon component by react
10 lines (9 loc) • 394 B
TypeScript
import { IIconSetting, IIconSvgProps } from './types';
export interface ISvgProps extends IIconSvgProps, IIconSetting {
'data-testid'?: string;
}
/**
* IconSvg
*/
declare const IconSvg: ({ idPrefix, symbolsPath, style, className, onClick, color, code, isRotateAnimation, rotate, size, defaultUnit, ...rest }: ISvgProps) => import("react/jsx-runtime").JSX.Element;
export default IconSvg;