carbon-components-svelte/tests/RadioButton/RadioButtonCustom.test.svelte
2025-03-20 17:34:20 -07:00

7 lines
225 B
Svelte

<script lang="ts">
import { RadioButton } from "carbon-components-svelte";
</script>
<RadioButton labelText="Custom label" value="custom" name="test-group">
<span slot="labelText">Custom Label Text</span>
</RadioButton>