mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
58 lines
No EOL
1.7 KiB
Text
58 lines
No EOL
1.7 KiB
Text
---
|
|
components: ["RadioButtonGroup", "RadioButton", "RadioButtonSkeleton"]
|
|
---
|
|
|
|
<script>
|
|
import { FormGroup, RadioButton, RadioButtonSkeleton, RadioButtonGroup } from "carbon-components-svelte";
|
|
import Preview from "../../components/Preview.svelte";
|
|
</script>
|
|
|
|
### Default
|
|
|
|
<FormGroup legendText="Storage tier (disk)">
|
|
<RadioButtonGroup selected="standard">
|
|
<RadioButton labelText="Free (1 GB)" value="free" />
|
|
<RadioButton labelText="Standard (10 GB)" value="standard" />
|
|
<RadioButton labelText="Pro (128 GB)" value="pro" />
|
|
</RadioButtonGroup>
|
|
</FormGroup>
|
|
|
|
### Label text aligned left
|
|
|
|
<FormGroup legendText="Storage tier (disk)">
|
|
<RadioButtonGroup labelPosition="left" selected="standard">
|
|
<RadioButton labelText="Free (1 GB)" value="free" />
|
|
<RadioButton labelText="Standard (10 GB)" value="standard" />
|
|
<RadioButton labelText="Pro (128 GB)" value="pro" />
|
|
</RadioButtonGroup>
|
|
</FormGroup>
|
|
|
|
### Vertical orientation
|
|
|
|
<FormGroup legendText="Storage tier (disk)">
|
|
<RadioButtonGroup orientation="vertical" selected="standard">
|
|
<RadioButton labelText="Free (1 GB)" value="free" />
|
|
<RadioButton labelText="Standard (10 GB)" value="standard" />
|
|
<RadioButton labelText="Pro (128 GB)" value="pro" />
|
|
</RadioButtonGroup>
|
|
</FormGroup>
|
|
|
|
### Skeleton
|
|
|
|
<FormGroup legendText="Storage tier (disk)">
|
|
<RadioButtonGroup>
|
|
<RadioButtonSkeleton />
|
|
<RadioButtonSkeleton />
|
|
<RadioButtonSkeleton />
|
|
</RadioButtonGroup>
|
|
</FormGroup>
|
|
|
|
### Skeleton (vertical orientation)
|
|
|
|
<FormGroup legendText="Storage tier (disk)">
|
|
<RadioButtonGroup orientation="vertical">
|
|
<RadioButtonSkeleton />
|
|
<RadioButtonSkeleton />
|
|
<RadioButtonSkeleton />
|
|
</RadioButtonGroup>
|
|
</FormGroup> |