gradio/js/radio/Radio.stories.svelte

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
601 B
Svelte
Raw Normal View History

<script>
import { Meta, Template, Story } from "@storybook/addon-svelte-csf";
import Radio from "./Index.svelte";
</script>
<Meta
title="Components/Radio"
component={Radio}
argTypes={{
disabled: {
control: [true, false],
description: "Whether the radio is disabled",
name: "interactive",
value: false
}
}}
/>
<Template let:args>
<Radio {...args} />
</Template>
<Story
name="Radio with Different Names and Values"
args={{
value: "jump again",
choices: [
["run", "run"],
["swim", "swim"],
["jump", "jump"],
["jump", "jump again"]
],
label: "Radio"
}}
/>