# Component/Stack/HStack
> Props: component-stack-hstack.props.txt
## Examples
### Base
```tsx
{
render: args =>
}
```
### Spacing
```tsx
{
render: args =>
,
args: {
spacing: 12
}
}
```
### Spacing Auto
```tsx
{
render: args =>
,
args: {
spacing: 'auto'
}
}
```