Select input
Last updated: 2.0.0 (18/01/2024)
Usage
import { SelectInput, Option } from "@valence-ui/core";
function MyComponent() {
const [value, setValue] = React.useState<Option | null>("option1");
return (
<SelectInput
value={value}
setValue={setValue}
options={[
"option1",
"option2",
"option3"
]}
/>
)
}Custom options
Props
Property
Type
Description
SelectInputEventProps
Property
Type
Description
Last updated