UNPKG

quantumai-design-system

Version:

퀀텀에이아이의 디자인 시스템

13 lines (12 loc) 596 B
import React from 'react'; import { MarginType, WidthType } from '../../../types/styleType'; import { BUTTON_OPTION } from './options'; export interface IButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, WidthType, MarginType { size?: keyof typeof BUTTON_OPTION; label?: string; isLine?: boolean; } declare const _default: React.ForwardRefExoticComponent<IButtonProps & React.RefAttributes<HTMLButtonElement>> & { Icon: React.ForwardRefExoticComponent<import("./ButtonIcon").IButtonIconProps & React.RefAttributes<HTMLButtonElement>>; }; export default _default;