MCPcopy Create free account
hub / github.com/agi-inc/design-system / SelectExample

Function SelectExample

apps/example/components/select/Select.example.tsx:11–24  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

9} from '@multion/ui';
10
11const SelectExample = () => {
12 return (
13 <Select>
14 <SelectTrigger className="w-[180px]">
15 <SelectValue placeholder="Theme" />
16 </SelectTrigger>
17 <SelectContent>
18 <SelectItem value="light">Light</SelectItem>
19 <SelectItem value="dark">Dark</SelectItem>
20 <SelectItem value="system">System</SelectItem>
21 </SelectContent>
22 </Select>
23 );
24};
25
26export default SelectExample;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected