# Component/Form/Label

> Props: component-form-label.props.txt

## Examples


### Base

```tsx
{
  args: {
    children: 'Label'
  }
}
```

### Help

```tsx
{
  args: {
    children: 'Label',
    helper: {
      contents: [{
        text: '도움말'
      }]
    }
  }
}
```

### Help With Required

```tsx
{
  args: {
    children: 'Label',
    required: true,
    helper: {
      contents: [{
        text: '도움말'
      }]
    }
  }
}
```

### Required

```tsx
{
  args: {
    children: 'Label',
    required: true
  }
}
```

### Width

```tsx
{
  args: {
    children: 'Label',
    width: 120
  }
}
```