1
1
"use client"
2
2
import "@/styles/toolbars.css"
3
3
4
- import CheckList from "@/components/editor-toolbars/CheckList "
4
+ import PageBreak from "@/components/editor-toolbars/PageBreak "
5
5
import Hr from "@/components/Hr"
6
6
import cn from "clsx"
7
7
8
+ import Blockquote from "../editor-toolbars/Blockquote"
8
9
import BulletList from "../editor-toolbars/BulletList"
10
+ import CheckList from "../editor-toolbars/CheckList"
11
+ import CodeBlock from "../editor-toolbars/CodeBlock"
9
12
import ColorFill from "../editor-toolbars/ColorFill"
10
13
import ColorText from "../editor-toolbars/ColorText"
14
+ import Emoji from "../editor-toolbars/Emoji"
11
15
import FontBold from "../editor-toolbars/FontBold"
12
16
import FontFamily from "../editor-toolbars/FontFamily"
13
17
import FontItalic from "../editor-toolbars/FontItalic"
@@ -21,9 +25,12 @@ import FontUnderline from "../editor-toolbars/FontUnderline"
21
25
import FormatBrush from "../editor-toolbars/FormatBrush"
22
26
import FormatClear from "../editor-toolbars/FormatClear"
23
27
import HeadingLevel from "../editor-toolbars/HeadingLevel"
28
+ import InsertImage from "../editor-toolbars/InsertImage"
29
+ import LiftList from "../editor-toolbars/LiftList"
24
30
import LineHeight from "../editor-toolbars/LineHeight"
25
31
import Margin from "../editor-toolbars/Margin"
26
32
import Redo from "../editor-toolbars/Redo"
33
+ import SinkList from "../editor-toolbars/SinkList"
27
34
import TextAlignCenter from "../editor-toolbars/TextAlignCenter"
28
35
import TextAlignJustify from "../editor-toolbars/TextAlignJustify"
29
36
import TextAlignLeft from "../editor-toolbars/TextAlignLeft"
@@ -37,7 +44,7 @@ const Splitter = <Hr className="h-[80%] mx-2" />
37
44
export default function ToolbarRich ( ) {
38
45
return (
39
46
< >
40
- < h1 className = "text-[3rem] font-bold" > With Rich Toolbars</ h1 >
47
+ { /* <h1 className="text-[3rem] font-bold">With Rich Toolbars</h1> */ }
41
48
< div
42
49
className = { cn (
43
50
"h-[62px] flex items-center justify-center relative" ,
@@ -77,10 +84,19 @@ export default function ToolbarRich() {
77
84
< TextIndentDec />
78
85
</ div >
79
86
{ Splitter }
80
- < div >
87
+ < div className = "w-[140px] flex flex-wrap" >
81
88
< BulletList />
89
+ < div className = "mr-1" > </ div >
82
90
< CheckList />
91
+ < LiftList />
92
+ < SinkList />
93
+ < Blockquote />
94
+ < CodeBlock />
95
+ < Emoji />
96
+ < InsertImage />
97
+ < PageBreak />
83
98
</ div >
99
+ { Splitter }
84
100
</ div >
85
101
< div className = "h-[62px]" />
86
102
</ >
0 commit comments