mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
17 lines
399 B
Svelte
17 lines
399 B
Svelte
<script lang="ts">
|
|
import { TileGroup, RadioTile } from "../types";
|
|
</script>
|
|
|
|
<TileGroup
|
|
name="plan"
|
|
required
|
|
legend="Service pricing tiers"
|
|
selected="0"
|
|
on:select="{(e) => {
|
|
console.log(e.detail); // string
|
|
}}"
|
|
>
|
|
<RadioTile light checked value="0">Lite plan</RadioTile>
|
|
<RadioTile value="1">Standard plan</RadioTile>
|
|
<RadioTile value="2">Plus plan</RadioTile>
|
|
</TileGroup>
|