mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-30 10:49:55 -06:00
* revert to last working version * add updated ui components * update formbricks-com components * apply prettier formatting * update apps/web files
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;
|