@spaceone/design-system
Version:
SpaceONE Design System
18 lines (16 loc) • 377 B
text/typescript
enum BUTTON_STYLE_TYPE {
'primary-dark' = 'primary-dark'
}
export interface DropdownBtnProps {
popup: boolean;
disabled: boolean;
block: boolean;
buttonOnly: boolean;
buttonIcon?: string;
buttonStyleType?: keyof BUTTON_STYLE_TYPE;
useCustomStyle: boolean;
width: string;
height: string;
offsetTop: number;
showPopup: boolean;
}