import clsx from "clsx"; import { FC } from "react"; import { Select } from "~/components/Select"; import { SelectProps } from "~/components/Select/Select"; import styles from "./styles.module.css"; interface Props extends SelectProps { label: string; description?: string; } export const SelectField: FC = ({ value, className, description, label, options, onChange, onChangeConfirm, hidePlaceholderOption, placeholder, name, }) => { return (
{description &&
{description}
}