File size: 455 Bytes
0ad74ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# `@gradio/radio`
```html
<script>
import { BaseRadio, BaseExample } from "@gradio/radio";
</script>
```
BaseRadio
```javascript
export let display_value: string;
export let internal_value: string | number;
export let disabled = false;
export let elem_id = "";
export let selected: string | number | null = null;
```
BaseExample
```javascript
export let value: string;
export let type: "gallery" | "table";
export let selected = false;
``` |