-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
71 changed files
with
1,092 additions
and
509 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediBlockquote } from "@tiptiz/editor-icons" | ||
|
||
import IconBar from "@/components/IconBar" | ||
|
||
export default function Blockquote() { | ||
return <IconBar path={ediBlockquote} tooltip="Blockquote" /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediCheckList } from "@tiptiz/editor-icons" | ||
|
||
import IconBar from "@/components/IconBar" | ||
|
||
export default function CheckList() { | ||
return <IconBar path={ediCheckList} tooltip="Check List" /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediCodeBlock } from "@tiptiz/editor-icons" | ||
|
||
import IconBar from "@/components/IconBar" | ||
|
||
export default function CodeBlock() { | ||
return <IconBar path={ediCodeBlock} tooltip="Code Block" /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediEmoji } from "@tiptiz/editor-icons" | ||
|
||
import IconBar from "@/components/IconBar" | ||
|
||
export default function Emoji() { | ||
return <IconBar path={ediEmoji} tooltip="Emoji" /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediBold } from "@tiptiz/editor-icons" | ||
|
||
import IconBar from "@/components/IconBar" | ||
|
||
export default function FontBold() { | ||
return <IconBar tooltip="Font Bold" path={ediBold} /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediItalic } from "@tiptiz/editor-icons" | ||
|
||
import IconBar from "@/components/IconBar" | ||
|
||
export default function FontItalic() { | ||
return <IconBar path={ediItalic} tooltip="Font Italic" /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediFontSizeMinus } from "@tiptiz/editor-icons" | ||
|
||
import IconBar from "@/components/IconBar" | ||
|
||
export default function FontSizeMinus() { | ||
return <IconBar tooltip="Font Size Decrease" path={ediFontSizeMinus} /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediFontSizePlus } from "@tiptiz/editor-icons" | ||
|
||
import IconBar from "@/components/IconBar" | ||
|
||
export default function FontSizePus() { | ||
return <IconBar tooltip="Font Size Increase" path={ediFontSizePlus} /> | ||
} |
Oops, something went wrong.