mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-25 03:39:31 -05:00
7eefdd336c
* add CTA question type together with new Text Editor based on Lexical and CTA summary --------- Co-authored-by: moritzrengert <moritz@rengert.de>
25 lines
528 B
TypeScript
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;
|