forked from cerc-io/snowballtools-base
* 🎨 style: make the cursor of the tab trigger wrapper to default * ⚡️ feat: create radio component * 📝 docs: add radio component to the example page * 🔧 chore: install `@radix-ui/react-radio-group`
17 lines
246 B
TypeScript
17 lines
246 B
TypeScript
import { RadioOption } from 'components/shared/Radio';
|
|
|
|
export const RADIO_OPTIONS: RadioOption[] = [
|
|
{
|
|
label: 'Label 1',
|
|
value: '1',
|
|
},
|
|
{
|
|
label: 'Label 2',
|
|
value: '2',
|
|
},
|
|
{
|
|
label: 'Label 3',
|
|
value: '3',
|
|
},
|
|
];
|