quantumai-design-system
Version:
퀀텀에이아이의 디자인 시스템
14 lines (13 loc) • 599 B
TypeScript
import { SVGProps } from 'react';
import { IconType } from './IconsPath';
import { MarginType } from '../../../types/styleType';
interface IconsProps extends SVGProps<SVGSVGElement>, MarginType {
name: IconType;
fill?: string;
rotate?: number;
size?: number;
}
declare const _default: import("react").ForwardRefExoticComponent<Omit<IconsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>> & {
Huge: import("react").ForwardRefExoticComponent<Omit<import("./HugeIcons").IHugeIconsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
};
export default _default;