---
name: Label
menu: Components
---

import PropsTable from 'website-src/components/PropsTable'
import { livePreviewStyle } from '../helpers/constants'
import Label from './Label'
import cactusTheme from '@repay/cactus-theme'
import { LiveProvider, LiveEditor, LiveError, LivePreview } from 'react-live'

# Label

### Try it out

export const code = `<Label>You know nothing, Jon Snow</Label>`

<LiveProvider code={code} scope={{ Label }}>
  <LiveEditor style={livePreviewStyle} />
  <LiveError />
  <LivePreview />
</LiveProvider>

## Basic usage

```jsx
import { Label } from '@repay/cactus-web'
...
<Label>You know nothing, Jon Snow</Label>
```

## Properties

<PropsTable of={Label} />
