# Container/TopNavigation
> Props: container-topnavigation.props.txt
## Examples
### Base
```tsx
{
render: () =>
} title='Title' right={Label} />
} title='Title' right={Label} />
}
```
### Empty Right
```tsx
{
args: {
left: ,
title: 'Title'
}
}
```
### Long Title
```tsx
{
render: () =>
} title='Long Title Long Title Long Title Long Title Long Title Long Title' right={Label} />
}
```
### Multiple
```tsx
{
args: {
left: <>
Label
>,
title: 'Title',
right: <>
Label
>
}
}
```
### Only Left
```tsx
{
args: {
left:
}
}
```
### Only Right
```tsx
{
args: {
right: Label
}
}
```
### Only Title
```tsx
{
args: {
title: 'Title'
}
}
```