svelte icon Svelte 5 UI lib
  • Coverage
  • About
  • Repo

Radio, Helper, and RadioButton

Setup

<script>
	import { Radio, Helper } from 'svelte-5-ui-lib';
</script>

Interactive Radio Builder

<Radio
  name="my_radio"
  labelClass="w-24 m-2"
>Item 1</Radio>

Examples

<script lang="ts">
	import { Radio } from 'svelte-5-ui-lib';
</script>

<Radio name="with-link" labelClass="m-2">
	I agree with the <a href="/" class="text-primary-600 dark:text-primary-500 ms-1 hover:underline"
		>terms and conditions</a
	>
	.
</Radio>

Component data

codewithshin.com
  • Repo
  • About