spacerSize: the amount of space the component should take up. One ofXS,S,M,L,XL.
- Typescript SDK
- GraphQL
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
spacerSize: the amount of space the component should take up. One of XS, S, M, L, XL.import { uiComponent } from '@team-plain/typescript-sdk';
[
uiComponent.text({ text: 'Content before an XS spacer' }),
uiComponent.spacer({ spacingSize: 'XS' }),
uiComponent.text({ text: 'Content after spacer' }),
];
[
{
"componentText": {
"text": "Content before an XS spacer"
}
},
{
"componentSpacer": {
"spacerSize": "XS"
}
},
{
"componentText": {
"text": "Content after spacer"
}
}
]
Was this page helpful?
