react-be-ui
Version:
React 전용 UI 컴포넌트 라이브러리
25 lines (23 loc) • 547 B
text/typescript
export interface BeButtonProps {
children?: React.ReactNode;
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;
link?: '_self' | '_blank';
}