MCPcopy Create free account
hub / github.com/composify-js/composify / Select

Function Select

packages/react/src/ui/Select/Select.tsx:14–22  ·  view source on GitHub ↗
({ className, options, ...props })

Source from the content-addressed store, hash-verified

12};
13
14export const Select: FC<Props> = ({ className, options, ...props }) => (
15 <select className={variants('select', { className })} {...props}>
16 {options.map((option) => (
17 <option key={option.value} value={option.value}>
18 {option.label}
19 </option>
20 ))}
21 </select>
22);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected