carbon-components-svelte/tests/RadioButton/RadioButtonCustom.test.svelte
2025-03-24 09:35:34 -07:00

7 lines
223 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>