Loading...
Started by Isak Langenbach Moe • Jun 4, 2025 11:13 AM
Total Replies
2
Participants
2
Activity
Quiet
Duration
11:13 AM
Thread starter
export const fields = (
<ModuleFields>
<ModuleWrapperFields/>
<RichTextField
name="richText"
label="Text"
default="This is some rich text"
/>
<FieldGroup label="Styles" name="styles" tab="STYLES">
<BorderField
name="border"
label="border"
required={false}
locked={false}
allowCustomBorderSides={false}
default={{
top: {
width: { value: 1, units: 'px' },
opacity: 100,
style: 'solid',
color: '#ffffff',
},
bottom: {
width: { value: 1, units: 'px' },
opacity: 100,
style: 'solid',
color: '#ffffff',
},
left: null,
right: null,
}}
/>
</FieldGroup>
</ModuleFields>
)