UNPKG

react-be-ui

Version:

React 전용 UI 컴포넌트 라이브러리

27 lines (25 loc) 602 B
export interface BeButtonProps { children?: React.ReactNode; ref?: HTMLButtonElement; className?: string; onClick?: (event: React.MouseEvent<HTMLButtonElement>) => void; selected?: boolean; contentText?: string; brand?: string; state?: string; color?: string; text?: boolean; border?: boolean; disabled?: boolean; fluid?: boolean; circle?: boolean; compact?: boolean; outline?: boolean; icon?: string; withIcon?: string; iconPos?: 'left' | 'right' | 'both'; badge?: string | number; badgeOption?: string; link?: string; linkTarget?: '_self' | '_blank'; }