-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: regroup extensions and icons
- Loading branch information
Showing
17 changed files
with
199 additions
and
147 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
@@ -0,0 +1,97 @@ | ||
import AlignCenter from "./align-center.vue"; | ||
import AlignJustify from "./align-justify.vue"; | ||
import AlignLeft from "./align-left.vue"; | ||
import AlignRight from "./align-right.vue"; | ||
import ArrowGoBackLine from "./arrow-go-back-line.vue"; | ||
import ArrowGoForwardLine from "./arrow-go-forward-line.vue"; | ||
import Bold from "./bold.vue"; | ||
import CodeBoxLine from "./code-box-line.vue"; | ||
import CodeLine from "./code-line.vue"; | ||
import DeleteBin from "./delete-bin.vue"; | ||
import DeleteColumn from "./delete-column.vue"; | ||
import DeleteRow from "./delete-row.vue"; | ||
import FormatClear from "./format-clear.vue"; | ||
import H1 from "./h1.vue"; | ||
import H2 from "./h2.vue"; | ||
import H3 from "./h3.vue"; | ||
import H4 from "./h4.vue"; | ||
import H5 from "./h5.vue"; | ||
import H6 from "./h6.vue"; | ||
import Heading from "./heading.vue"; | ||
import Image from "./image.vue"; | ||
import InsertColumnLeft from "./insert-column-left.vue"; | ||
import InsertColumnRight from "./insert-column-right.vue"; | ||
import InsertRowBottom from "./insert-row-bottom.vue"; | ||
import InsertRowTop from "./insert-row-top.vue"; | ||
import Italic from "./italic.vue"; | ||
import LayoutGrid from "./layout-grid.vue"; | ||
import LayoutLeft from "./layout-left.vue"; | ||
import LayoutTop from "./layout-top.vue"; | ||
import Link from "./link.vue"; | ||
import ListCheck from "./list-check.vue"; | ||
import ListOrdered from "./list-ordered.vue"; | ||
import ListUnordered from "./list-unordered.vue"; | ||
import MarkPenLine from "./mark-pen-line.vue"; | ||
import MergeCells from "./merge-cells.vue"; | ||
import Paragraph from "./paragraph.vue"; | ||
import QuoteText from "./quote-text.vue"; | ||
import Separator from "./separator.vue"; | ||
import SplitCell from "./split-cell.vue"; | ||
import Strikethrough from "./strikethrough.vue"; | ||
import Subscript from "./subscript.vue"; | ||
import Superscript from "./superscript.vue"; | ||
import Table from "./table.vue"; | ||
import TextWrap from "./text-wrap.vue"; | ||
import Underline from "./underline.vue"; | ||
import Unlink from "./unlink.vue"; | ||
|
||
const icons = { | ||
AlignCenter, | ||
AlignJustify, | ||
AlignLeft, | ||
AlignRight, | ||
ArrowGoBackLine, | ||
ArrowGoForwardLine, | ||
Bold, | ||
CodeBoxLine, | ||
CodeLine, | ||
DeleteBin, | ||
DeleteColumn, | ||
DeleteRow, | ||
FormatClear, | ||
H1, | ||
H2, | ||
H3, | ||
H4, | ||
H5, | ||
H6, | ||
Heading, | ||
Image, | ||
InsertColumnLeft, | ||
InsertColumnRight, | ||
InsertRowBottom, | ||
InsertRowTop, | ||
Italic, | ||
LayoutGrid, | ||
LayoutLeft, | ||
LayoutTop, | ||
Link, | ||
ListCheck, | ||
ListOrdered, | ||
ListUnordered, | ||
MarkPenLine, | ||
MergeCells, | ||
Paragraph, | ||
QuoteText, | ||
Separator, | ||
SplitCell, | ||
Strikethrough, | ||
Subscript, | ||
Superscript, | ||
Table, | ||
TextWrap, | ||
Underline, | ||
Unlink, | ||
}; | ||
|
||
export default icons; |
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
Oops, something went wrong.