# Component/Control/Radio

> Props: component-control-radio.props.txt

## Examples


### Base

```tsx
{
  args: {
    children: '직진배송'
  }
}
```

### Checked

```tsx
{
  args: {
    checked: true,
    children: '직진배송'
  }
}
```

### Checked Disabled

```tsx
{
  args: {
    checked: true,
    disabled: true,
    children: '직진배송'
  }
}
```

### Disabled

```tsx
{
  args: {
    disabled: true,
    children: '직진배송'
  }
}
```

### Size

```tsx
{
  render: () => <Stack gap={10} direction='column'>
      <Radio size='large'>large</Radio>
      <Radio size='medium'>medium</Radio>
      <Radio size='small'>small</Radio>
    </Stack>
}
```