react-restyle-components
Version:
Easy use restyle components
10 lines • 381 B
TypeScript
interface InputDropdownProps {
title: string;
items: Array<string>;
hasError?: boolean;
className?: string;
onChange?: (item: string) => void;
}
export declare const InputDropdown: ({ items, className, hasError, title, onChange, }: InputDropdownProps) => import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=input-dropdown.component.d.ts.map