import { CheckboxGroup } from '../CheckboxGroup';
import { RadioGroup } from '../RadioGroup';
import { InnerInput } from './input';
import { Textarea } from '../Textarea';
import { Switch as MySwitch } from '../Switch';
import { Search } from '../Search';
import { Spinner } from '../Spinner';
import { Rate } from '../Rate';
import { Select } from '../Select';
import { AutoComplete } from '../AutoComplete';
import { Cascader } from '../Cascader';
import { Timepicker } from '../TimePicker';
import { Datepicker } from '../DatePicker';
import { Slider } from '../Slider';
import { TreeSelect } from '../TreeSelect';
import { Switch, Match } from 'solid-js';
import { ColorPicker } from '../ColorPicker';
export function Input (props: any) {
return }>
// if (props.type === 'text' || !props.type || props.type === 'password') {
// return ;
// }
// if (props.type === 'checkbox') {
// return ;
// }
// if (props.type === 'radio') {
// return ;
// }
// if (props.type === 'switch') {
// return ;
// }
// if (props.type === 'search') {
// return ;
// }
// if (props.type === 'cascader') {
// return ;
// }
// if (props.type === 'textarea') {
// return ;
// }
// if (props.type === 'select') {
// return ;
// }
// if (props.type === 'spinner') {
// return ;
// }
// if (props.type === 'rate') {
// return ;
// }
// if (props.type === 'time') {
// return ;
// }
// if (props.type === 'timerange') {
// return ;
// }
// if (props.type === 'datetime' || props.type === 'date' || props.type === 'year' || props.type === 'month') {
// return ;
// }
// if (props.type === 'datetimerange' || props.type === 'daterange') {
// return ;
// }
// if (props.type === 'autocomplete') {
// return ;
// }
}