UNPKG

@praetorian-chariot/ui

Version:

The UI component library for Chariot, built with Tailwind CSS and React.

25 lines 834 B
import React from "react"; import { DropdownOption } from "./Dropdown"; export interface DashedDropdownProps { options: DropdownOption[]; selected?: DropdownOption | DropdownOption[]; onSelect?: (option: DropdownOption) => void; onApply?: (selected: DropdownOption[]) => void; onClear?: () => void; className?: string; label: string; active?: boolean; size?: "xs" | "sm" | "md" | "lg" | "xl"; border?: boolean; listClassName?: string; title?: string; searchValue?: string; onSearchChange?: (value: string) => void; searchPlaceholder?: string; multiSelect?: boolean; virtualized?: boolean; isPraetorianUser?: boolean; } export declare const DashedDropdown: React.FC<DashedDropdownProps>; export default DashedDropdown; //# sourceMappingURL=DashedDropdown.d.ts.map