export default { name: "Prose", acceptsChildren: false, category: "Basic", props: [ { label: "Content", name: "wysiwyg", required: true, type: { kind: "wysiwyg" }, default: "", placeholder: "enter some content", help: "The content to display", }, ], defaultStyles: { "": { "font-family": "var(--theme-fonts-body)", "background-color": "transparent", "border-left-style": "none", "border-left-width": "0px", "border-left-color": "var(--theme-border-default)", "border-top-style": "none", "border-top-width": "0px", "border-top-color": "var(--theme-border-default)", "border-right-style": "none", "border-right-width": "0px", "border-right-color": "var(--theme-border-default)", "border-bottom-style": "none", "border-bottom-width": "0px", "border-bottom-color": "var(--theme-border-default)", "border-radius": "var(--theme-radii-none)", "box-shadow": "var(--theme-shadows-none)", "font-size": "var(--theme-fontSizes-md)", width: "var(--theme-sizes-full)", height: "auto", "min-width": "auto", "min-height": "auto", "max-width": "100%", "max-height": "100%", "justify-content": "flex-start", "align-items": "flex-start", "padding-left": "var(--theme-sizes-zero)", "padding-right": "var(--theme-sizes-zero)", "padding-top": "var(--theme-sizes-zero)", "padding-bottom": "var(--theme-sizes-zero)", "margin-left": "var(--theme-sizes-zero)", "margin-right": "var(--theme-sizes-zero)", "margin-top": "var(--theme-sizes-zero)", "margin-bottom": "var(--theme-sizes-zero)", }, }, sources: [], } as const;