dividerSpacingSize(optional): the spacing the divider should have before and after the component. One ofXS,S,M,L,XL. Defaults toS.
- Typescript SDK
- GraphQL
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Useful when you need a bit of structure.
dividerSpacingSize (optional): the spacing the divider should have before and after the component. One of XS, S,
M, L, XL. Defaults to S.import { uiComponent } from '@team-plain/typescript-sdk';
[
uiComponent.text({ text: 'Content before an XS divider' }),
uiComponent.divider({ spacingSize: 'XS' }),
uiComponent.text({ text: 'Content after divider' }),
];
[
{
"componentText": {
"text": "Content before an XS divider"
}
},
{
"componentDivider": {
"dividerSpacingSize": "XS"
}
},
{
"componentText": {
"text": "Content after divider"
}
}
]
Was this page helpful?
