UNPKG

mfg-ui-components

Version:

React UI library with reusable components

21 lines (20 loc) 726 B
import "./Dropdown.scss"; export type viewType = "verticale" | "horizontal"; export type mode = "light" | "dark"; export interface Props { mainClassName?: string; dropContentClass?: string; dropClassName?: string; children?: any; mainId?: string; dropId?: string; dropdownLabel?: string; data?: any; listButtonClick?: () => void; listInBtn?: boolean; placeHolder?: string; view?: viewType; dropdownMode?: mode; } declare const Dropdown: ({ mainClassName, children, mainId, dropdownLabel, dropClassName, dropId, dropContentClass, data, listButtonClick, listInBtn, view, placeHolder, dropdownMode }: Props) => import("react/jsx-runtime").JSX.Element; export default Dropdown;