# Component/Text/HelpText

> Props: component-text-helptext.props.txt

## Examples


### Base

```tsx
{
  args: {
    title: 'Help Text Title',
    contents: [{
      text: '여러 줄글의 텍스트를 작성할 수 있습니다.'
    }, {
      text: <div style={{
        display: 'flex',
        columnGap: '8px',
        alignItems: 'center'
      }}>
            <IconBoxZigzag />
            <BaseText kind='Body_13_Regular'>Label</BaseText>
          </div>
    }]
  }
}
```