Installation
- CLI
- Manual
npx shadcn-svelte@next add radio-group
1
Install bits-ui
npm install bits-ui -D
2
Copy and paste the component source
Copy and paste the component source code into your project.
Usage
showLineNumbers
<script lang="ts">
import { Label } from "$lib/components/ui/label/index.js";
import * as RadioGroup from "$lib/components/ui/radio-group/index.js";
</script>
showLineNumbers
<RadioGroup.Root value="option-one">
<div class="flex items-center space-x-2">
<RadioGroup.Item value="option-one" id="option-one" />
<Label for="option-one">Option One</Label>
</div>
<div class="flex items-center space-x-2">
<RadioGroup.Item value="option-two" id="option-two" />
<Label for="option-two">Option Two</Label>
</div>
</RadioGroup.Root>