Files
formbricks/packages/ui/components/editor/ExampleTheme.ts
T
Matti Nannt 7eefdd336c Add CTA Question Type (#246)
* add CTA question type together with new Text Editor based on Lexical and CTA summary

---------

Co-authored-by: moritzrengert <moritz@rengert.de>
2023-04-24 20:13:39 +02:00

25 lines
528 B
TypeScript

const exampleTheme = {
placeholder: "fb-editor-placeholder",
paragraph: "fb-editor-paragraph",
heading: {
h1: "fb-editor-heading-h1",
h2: "fb-editor-heading-h2",
},
list: {
nested: {
listitem: "fb-editor-nested-listitem",
},
ol: "fb-editor-list-ol",
ul: "fb-editor-list-ul",
listitem: "fb-editor-listitem",
},
image: "fb-editor-image",
link: "fb-editor-link",
text: {
bold: "fb-editor-text-bold",
italic: "fb-editor-text-italic",
},
};
export default exampleTheme;