react-restyle-components
Version:
Easy use restyle components
12 lines (11 loc) • 361 B
TypeScript
import React from 'react';
import '../../../../tc.css';
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) => React.JSX.Element;
export {};