UNPKG

@gits-id/dropdown

Version:

GITS Dropdown Component

16 lines (14 loc) 262 B
export type DropdownProps = { modelValue: boolean; btnProps: any; label: string; right: boolean; items?: DropdownItemProps[]; }; export type DropdownItemProps = { text: string; to?: string; href?: string; icon?: string; newTab?: boolean; };