quantumai-design-system
Version:
퀀텀에이아이의 디자인 시스템
11 lines (10 loc) • 485 B
TypeScript
import { SVGProps } from 'react';
import { MarginType } from '../../../types/styleType';
import { HUGE_ICONS_PATH } from './HugeIconPath';
export interface IHugeIconsProps extends Omit<SVGProps<SVGSVGElement>, 'fill'>, MarginType {
name: keyof typeof HUGE_ICONS_PATH;
rotate?: number;
size?: number;
}
declare const HugeIcons: import("react").ForwardRefExoticComponent<Omit<IHugeIconsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
export default HugeIcons;