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