@livepreso/react-plugin-textfield 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.lintstagedrc.js +6 -0
- package/.rush/temp/shrinkwrap-deps.json +311 -0
- package/.vscode/settings.json +22 -0
- package/CHANGELOG.json +17 -0
- package/CHANGELOG.md +9 -0
- package/components/BubbleMenu.js +181 -0
- package/components/BubbleMenu.module.scss +9 -0
- package/components/LinkEditDialog.js +105 -0
- package/components/LinkEditDialog.module.scss +171 -0
- package/components/Popover.js +43 -0
- package/components/Popover.module.scss +80 -0
- package/components/PrimaryToolbar.js +27 -0
- package/components/Select/Select.js +71 -0
- package/components/Select/Select.module.scss +100 -0
- package/components/Select/SelectGroup.js +37 -0
- package/components/Select/index.js +1 -0
- package/components/TableCellMenu.js +43 -0
- package/components/TableToolbar.js +41 -0
- package/components/Tooltip.js +34 -0
- package/components/Tooltip.module.scss +87 -0
- package/components/VerticalAlignToggle.js +65 -0
- package/components/color-picker/ColorPicker.js +28 -0
- package/components/color-picker/ColorPicker.module.scss +8 -0
- package/components/color-picker/ColorPickerChip.js +22 -0
- package/components/color-picker/ColorPickerChip.module.scss +25 -0
- package/components/color-picker/ColorPickerCombo.js +45 -0
- package/components/color-picker/ColorPickerCombo.module.scss +23 -0
- package/components/color-picker/TextColorIcon.js +18 -0
- package/components/editor-toolbars/EditorMenu.js +104 -0
- package/components/editor-toolbars/EditorMenu.module.scss +96 -0
- package/components/editor-toolbars/EditorToolbar.js +146 -0
- package/components/editor-toolbars/EditorToolbar.module.scss +75 -0
- package/components/editor-toolbars/MenuItem.js +24 -0
- package/components/editor-toolbars/SubMenu.js +50 -0
- package/components/editor-toolbars/ToolbarButton.js +26 -0
- package/components/editor-toolbars/ToolbarToggle.js +35 -0
- package/components/editor-toolbars/ToolbarToggleGroup.js +43 -0
- package/components/editor-toolbars/utils.js +7 -0
- package/components/hooks/use-presenter.js +5 -0
- package/components/style.module.scss +63 -0
- package/components/tiptap/ListItem.js +5 -0
- package/components/tiptap/Table.js +397 -0
- package/components/tiptap/TableCells.js +99 -0
- package/components/utils.js +84 -0
- package/configs/generate-toolbar-configuration.js +130 -0
- package/configs/generate-toolbar-options.js +96 -0
- package/configs/table-toolbar-configuration.js +187 -0
- package/configs/toolbar-configuration.js +330 -0
- package/constants.js +198 -0
- package/eslint.config.mjs +15 -0
- package/icons/AddColumnLeft.js +15 -0
- package/icons/AddColumnRight.js +15 -0
- package/icons/AddRowAbove.js +15 -0
- package/icons/AddRowBelow.js +15 -0
- package/icons/AlignHorizontalCenter.js +13 -0
- package/icons/AlignHorizontalLeft.js +13 -0
- package/icons/AlignHorizontalRight.js +13 -0
- package/icons/AlignVerticalBottom.js +13 -0
- package/icons/AlignVerticalCenter.js +13 -0
- package/icons/AlignVerticalTop.js +13 -0
- package/icons/Backspace.js +13 -0
- package/icons/Bold.js +14 -0
- package/icons/BorderAll.js +13 -0
- package/icons/BorderBottom.js +13 -0
- package/icons/BorderClear.js +13 -0
- package/icons/BorderHorizontal.js +13 -0
- package/icons/BorderInner.js +13 -0
- package/icons/BorderLeft.js +13 -0
- package/icons/BorderOuter.js +13 -0
- package/icons/BorderRight.js +13 -0
- package/icons/BorderTop.js +13 -0
- package/icons/BorderVertical.js +13 -0
- package/icons/Close.js +13 -0
- package/icons/Delete.js +13 -0
- package/icons/EvenlyDistribute.js +14 -0
- package/icons/FitWidth.js +13 -0
- package/icons/FitWidthArrows.js +21 -0
- package/icons/FormatAlignCenter.js +13 -0
- package/icons/FormatAlignJustify.js +13 -0
- package/icons/FormatAlignLeft.js +13 -0
- package/icons/FormatAlignRight.js +13 -0
- package/icons/FormatBold.js +13 -0
- package/icons/FormatClear.js +13 -0
- package/icons/FormatColorFill.js +13 -0
- package/icons/FormatColorText.js +13 -0
- package/icons/FormatItalic.js +13 -0
- package/icons/FormatLineSpacing.js +13 -0
- package/icons/FormatListBulleted.js +13 -0
- package/icons/FormatListNumbered.js +13 -0
- package/icons/FormatStrikethrough.js +13 -0
- package/icons/FormatUnderlined.js +13 -0
- package/icons/HorizontalRule.js +13 -0
- package/icons/Italic.js +14 -0
- package/icons/ItalicIcon.js +18 -0
- package/icons/Link.js +13 -0
- package/icons/LinkOff.js +13 -0
- package/icons/MergeCells.js +14 -0
- package/icons/Redo.js +13 -0
- package/icons/RemoveColumnOutline.js +28 -0
- package/icons/RemoveRowOutline.js +25 -0
- package/icons/SplitCells.js +14 -0
- package/icons/SplitScene.js +13 -0
- package/icons/Subscript.js +13 -0
- package/icons/Superscript.js +13 -0
- package/icons/Underline.js +14 -0
- package/icons/Undo.js +13 -0
- package/icons/VerticalAlignBottom.js +13 -0
- package/icons/VerticalAlignCenter.js +13 -0
- package/icons/VerticalAlignTop.js +13 -0
- package/icons/add_column_left.svg +6 -0
- package/icons/add_column_right.svg +6 -0
- package/icons/add_row_above.svg +6 -0
- package/icons/add_row_below.svg +6 -0
- package/icons/align_horizontal_center.svg +1 -0
- package/icons/align_horizontal_left.svg +1 -0
- package/icons/align_horizontal_right.svg +1 -0
- package/icons/align_vertical_bottom.svg +1 -0
- package/icons/align_vertical_center.svg +1 -0
- package/icons/align_vertical_top.svg +1 -0
- package/icons/backspace.svg +1 -0
- package/icons/bold.svg +1 -0
- package/icons/border_all.svg +1 -0
- package/icons/border_bottom.svg +1 -0
- package/icons/border_clear.svg +1 -0
- package/icons/border_horizontal.svg +1 -0
- package/icons/border_inner.svg +1 -0
- package/icons/border_left.svg +1 -0
- package/icons/border_outer.svg +1 -0
- package/icons/border_right.svg +1 -0
- package/icons/border_top.svg +1 -0
- package/icons/border_vertical.svg +1 -0
- package/icons/close.svg +1 -0
- package/icons/delete.svg +1 -0
- package/icons/evenly_distribute.svg +5 -0
- package/icons/fit_width.svg +1 -0
- package/icons/fit_width_arrows.svg +12 -0
- package/icons/format_align_center.svg +1 -0
- package/icons/format_align_justify.svg +1 -0
- package/icons/format_align_left.svg +1 -0
- package/icons/format_align_right.svg +1 -0
- package/icons/format_bold.svg +1 -0
- package/icons/format_clear.svg +1 -0
- package/icons/format_color_fill.svg +1 -0
- package/icons/format_color_text.svg +5 -0
- package/icons/format_color_text_ungrouped.svg +6 -0
- package/icons/format_italic.svg +1 -0
- package/icons/format_line_spacing.svg +1 -0
- package/icons/format_list_bulleted.svg +1 -0
- package/icons/format_list_numbered.svg +1 -0
- package/icons/format_strikethrough.svg +1 -0
- package/icons/format_underlined.svg +1 -0
- package/icons/horizontal_rule.svg +1 -0
- package/icons/index.js +191 -0
- package/icons/italic.svg +1 -0
- package/icons/link.svg +1 -0
- package/icons/link_off.svg +1 -0
- package/icons/merge_cells.svg +5 -0
- package/icons/redo.svg +1 -0
- package/icons/remove_column_outline.svg +20 -0
- package/icons/remove_row_outline.svg +17 -0
- package/icons/split_cells.svg +5 -0
- package/icons/split_scene.svg +1 -0
- package/icons/subscript.svg +1 -0
- package/icons/superscript.svg +1 -0
- package/icons/underline.svg +1 -0
- package/icons/undo.svg +1 -0
- package/icons/vertical_align_bottom.svg +1 -0
- package/icons/vertical_align_center.svg +1 -0
- package/icons/vertical_align_top.svg +1 -0
- package/index.js +334 -0
- package/index.module.scss +106 -0
- package/package.json +63 -0
- package/scripts/extract-svg.js +288 -0
- package/utils/color-utils.js +42 -0
- package/utils/generate-vertical-alignment-icon.js +22 -0
- package/utils/generateCustomExtensions.js +49 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const FormatAlignLeft = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M140-140v-60h680v60H140Zm0-155v-60h440v60H140Zm0-155v-60h680v60H140Zm0-155v-60h440v60H140Zm0-155v-60h680v60H140Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default FormatAlignLeft;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const FormatAlignRight = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M140-760v-60h680v60H140Zm240 155v-60h440v60H380ZM140-450v-60h680v60H140Zm240 155v-60h440v60H380ZM140-140v-60h680v60H140Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default FormatAlignRight;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const FormatBold = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M293.54-215v-530H488q61.15 0 110.58 38.08Q648-668.85 648-604.38q0 44.84-21.66 73.11-21.65 28.27-46.65 41.04 30.77 10.61 58.77 41.96 28 31.35 28 84.42 0 76.69-56.54 112.77T496-215H293.54Zm86-79.69h113.23q47.23 0 66.77-26.23t19.54-50.31q0-24.08-19.54-50.31-19.54-26.23-68.62-26.23H379.54v153.08Zm0-230.31h103.77q36.46 0 57.81-20.85 21.34-20.84 21.34-49.92 0-30.92-22.57-50.54-22.58-19.61-55.35-19.61h-105V-525Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default FormatBold;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const FormatClear = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M514.92-553.69 449.62-619l15.77-38.08h-54.62l-85.23-85.23h456.77v84.62H559.15l-44.23 104ZM782.77-92.93 457.31-418.77l-86.16 202.61h-92.53l114-267.3L89.08-786.61l42.15-42.16 693.69 693.69-42.15 42.15Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default FormatClear;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const FormatColorFill = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="m255.46-880.54 42.39-42.53 385.76 385.76-275.92 277.08-275.92-277.46 233.54-233-109.85-109.85Zm152.62 152.62-191.77 191h382.77l-191-191Zm343.46 461.77q-29.16 0-49.58-20.43-20.42-20.42-20.42-49.57 0-19.46 10.96-40.19 10.96-20.73 23.65-39.04 8.23-11.23 17.08-22.69 8.85-11.47 18.31-22.7 9.46 11.23 18.31 22.7 8.84 11.46 17.07 22.69 12.69 18.31 23.66 39.04 10.96 20.73 10.96 40.19 0 29.15-20.43 49.57-20.42 20.43-49.57 20.43ZM80 0v-120h800V0H80Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default FormatColorFill;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const FormatColorText = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M100 0v-149.23h760V0H100Zm134.62-280 210.77-540h69.22l210.77 540h-72.15l-53.84-144.77H360.31L305.23-280h-70.61Zm146.76-204h195.7L482-736h-4.77l-95.85 252Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default FormatColorText;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const FormatItalic = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M215.77-215v-72.31h152.69l129.62-385.38H345.39V-745h366.15v72.31H571.15L441.54-287.31h140.38V-215H215.77Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default FormatItalic;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const FormatLineSpacing = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M246.15-180 100-326.15l42.15-42.16 74.01 72.77v-368.92l-74.01 72.77L100-633.85 246.15-780l146.16 146.15-42.16 42.16-74-72.77v368.92l74-72.77 42.16 42.16L246.15-180Zm241.54-40v-60H860v64.61L487.69-220Zm0-230v-60H860v60H487.69Zm0-230v-60L860-744.61V-680H487.69Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default FormatLineSpacing;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const FormatListBulleted = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M372.31-210v-60H820v60H372.31Zm0-240v-60H820v60H372.31Zm0-240v-60H820v60H372.31ZM206.54-173.46q-27.45 0-46.99-19.55Q140-212.55 140-240q0-27.45 19.55-46.99 19.54-19.55 46.99-19.55 27.45 0 46.99 19.55 19.55 19.54 19.55 46.99 0 27.45-19.55 46.99-19.54 19.55-46.99 19.55Zm0-240q-27.45 0-46.99-19.55Q140-452.55 140-480q0-27.45 19.55-46.99 19.54-19.55 46.99-19.55 27.45 0 46.99 19.55 19.55 19.54 19.55 46.99 0 27.45-19.55 46.99-19.54 19.55-46.99 19.55Zm0-240q-27.45 0-46.99-19.55Q140-692.55 140-720q0-27.45 19.55-46.99 19.54-19.55 46.99-19.55 27.45 0 46.99 19.55 19.55 19.54 19.55 46.99 0 27.45-19.55 46.99-19.54 19.55-46.99 19.55Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default FormatListBulleted;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const FormatListNumbered = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M140-100v-47.69h100V-190h-60v-47.69h60V-280H140v-47.69h147.69v90l-33.84 25.38L287.69-190v90H140Zm0-266.15v-137.7h100v-42.3H140v-47.7h147.69v137.7h-100v42.3h100v47.7H140Zm60-266.16v-180h-60V-860h107.69v227.69H200ZM372.31-210v-60H820v60H372.31Zm0-240v-60H820v60H372.31Zm0-240v-60H820v60H372.31Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default FormatListNumbered;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const FormatStrikethrough = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M100-410.39v-59.99h760v59.99H100Zm337.69-139.22V-695h-217.3v-85H740v85H522.69v145.39h-85Zm0 369.61v-151.15h85V-180h-85Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default FormatStrikethrough;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const FormatUnderlined = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M213.85-155v-60h532.3v60h-532.3ZM480-298.85q-93.31 0-145.65-56.65Q282-412.15 282-507.31v-316.15h74.15v319.84q0 60.62 32.23 97.16T480-369.92q59.39 0 91.62-36.54 32.23-36.54 32.23-97.16v-319.84H678v316.15q0 95.16-52.35 151.81-52.34 56.65-145.65 56.65Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default FormatUnderlined;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const HorizontalRule = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M180-450v-60h600v60H180Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default HorizontalRule;
|
package/icons/Italic.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const Italic = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
viewBox="0 0 24 24"
|
|
6
|
+
fill="currentColor"
|
|
7
|
+
width="24px"
|
|
8
|
+
height="24px"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path d="M15 20H7V18H9.92661L12.0425 6H9V4H17V6H14.0734L11.9575 18H15V20Z" />
|
|
12
|
+
</svg>
|
|
13
|
+
);
|
|
14
|
+
export default Italic;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
const IconItalic = () => {
|
|
4
|
+
// From https://remixicon.com/ (https://github.com/Remix-Design/RemixIcon)
|
|
5
|
+
return (
|
|
6
|
+
<svg
|
|
7
|
+
width={20}
|
|
8
|
+
height={20}
|
|
9
|
+
viewBox="0 0 24 24"
|
|
10
|
+
fill="currentColor"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path d="M15 20H7V18H9.92661L12.0425 6H9V4H17V6H14.0734L11.9575 18H15V20Z" />
|
|
14
|
+
</svg>
|
|
15
|
+
);
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export default IconItalic;
|
package/icons/Link.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const Link = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M432.31-298.46H281.54q-75.34 0-128.44-53.1Q100-404.65 100-479.98q0-75.33 53.1-128.44 53.1-53.12 128.44-53.12h150.77v60H281.54q-50.39 0-85.96 35.58Q160-530.38 160-480q0 50.38 35.58 85.96 35.57 35.58 85.96 35.58h150.77v60ZM330-450v-60h300v60H330Zm197.69 151.54v-60h150.77q50.39 0 85.96-35.58Q800-429.62 800-480q0-50.38-35.58-85.96-35.57-35.58-85.96-35.58H527.69v-60h150.77q75.34 0 128.44 53.1Q860-555.35 860-480.02q0 75.33-53.1 128.44-53.1 53.12-128.44 53.12H527.69Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default Link;
|
package/icons/LinkOff.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const LinkOff = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M755.38-315.85 710-362.46q40.38-11 65.19-43.27Q800-438 800-480q0-50.38-35.38-85.96-35.39-35.58-85.39-35.58H526.92v-60h152.31q74.92 0 127.85 53.12Q860-555.31 860-480q0 53.15-28.54 97.11-28.54 43.97-76.08 67.04ZM623.23-450l-60-60h66v60h-6ZM805.85-69.85l-736-736L112-848l736 736-42.15 42.15ZM433.08-298.46H281.54q-75.31 0-128.42-53.12Q100-404.69 100-480q0-66.69 42.96-117.04 42.96-50.34 107.81-60.8H260l56.31 56.3h-34.77q-50.39 0-85.96 35.58Q160-530.38 160-480q0 50.38 35.58 85.96 35.57 35.58 85.96 35.58h151.54v60ZM330.77-450v-60h77.69l59 60H330.77Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default LinkOff;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const MergeCells = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
id="Layer_1"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
viewBox="0 0 24 24"
|
|
7
|
+
width="24px"
|
|
8
|
+
height="24px"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path d="M3.5,20.5V3.5h7.3v3.6h-1.5v-2.1h-4.3v14h4.3v-2.1h1.5v3.6H3.5ZM13.2,20.5v-3.6h1.5v2.1h4.3V5h-4.3v2.1h-1.5v-3.6h7.3v17h-7.3ZM11.3,14.8v-2h-2v-1.5h2v-2h1.5v2h2v1.5h-2v2h-1.5Z" />
|
|
12
|
+
</svg>
|
|
13
|
+
);
|
|
14
|
+
export default MergeCells;
|
package/icons/Redo.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const Redo = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M384.85-220q-87.77 0-150.35-58.77t-62.58-144.69q0-85.92 62.58-144.5t150.35-58.58h280.84l-111.3-111.31L596.54-780 780-596.54 596.54-413.08l-42.15-42.15 111.3-111.31H384.85q-62.62 0-107.77 41.15-45.16 41.16-45.16 101.93 0 60.77 45.16 102.11Q322.23-280 384.85-280h287.07v60H384.85Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default Redo;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const RemoveColumnOutline = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
viewBox="0 0 24 24"
|
|
6
|
+
width="24px"
|
|
7
|
+
height="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<g id="Layer_1">
|
|
11
|
+
<g id="Layer_11" data-name="Layer_1">
|
|
12
|
+
<polygon points="22.2 10.6 21.2 9.5 19.8 10.9 18.3 9.5 17.3 10.6 18.7 12 17.3 13.4 18.3 14.5 19.8 13.1 21.2 14.5 22.2 13.4 20.8 12 22.2 10.6" />
|
|
13
|
+
<path d="M12.8,3.5H3.5v17h9.3V3.5ZM11.3,19h-6.3V5h6.3v14Z" />
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
<g id="Layer_2">
|
|
17
|
+
<rect x={15} y={18.9} width={1.6} height={1.6} />
|
|
18
|
+
<rect x={15} y={3.5} width={1.6} height={1.6} />
|
|
19
|
+
<rect x={18.9} y={18.9} width={1.6} height={1.6} />
|
|
20
|
+
<rect x={18.9} y={11.2} width={1.6} height={1.6} />
|
|
21
|
+
<rect x={18.9} y={3.5} width={1.6} height={1.6} />
|
|
22
|
+
</g>
|
|
23
|
+
<g id="Layer_3">
|
|
24
|
+
<rect x={4} y={11.2} width={8.2} height={1.5} />
|
|
25
|
+
</g>
|
|
26
|
+
</svg>
|
|
27
|
+
);
|
|
28
|
+
export default RemoveColumnOutline;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const RemoveRowOutline = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
viewBox="0 0 24 24"
|
|
6
|
+
width="24px"
|
|
7
|
+
height="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<g id="Layer_2">
|
|
11
|
+
<polygon points="13.4 22.2 14.5 21.2 13.1 19.8 14.5 18.4 13.4 17.3 12 18.7 10.6 17.3 9.5 18.4 11 19.8 9.5 21.2 10.6 22.2 12 20.8 13.4 22.2" />
|
|
12
|
+
<path d="M20.5,12.8V3.5H3.5v9.3h17ZM5,11.3v-6.3h14v6.3H5Z" />
|
|
13
|
+
</g>
|
|
14
|
+
<g id="Layer_4">
|
|
15
|
+
<path d="M12.7,11.8v-7.8s-1.5,0-1.5,0v7.8s1.5,0,1.5,0Z" />
|
|
16
|
+
</g>
|
|
17
|
+
<g id="Layer_3">
|
|
18
|
+
<rect x={3.5} y={18.9} width={1.6} height={1.6} />
|
|
19
|
+
<rect x={3.5} y={15} width={1.6} height={1.6} />
|
|
20
|
+
<rect x={18.9} y={18.9} width={1.6} height={1.6} />
|
|
21
|
+
<rect x={18.9} y={15} width={1.6} height={1.6} />
|
|
22
|
+
</g>
|
|
23
|
+
</svg>
|
|
24
|
+
);
|
|
25
|
+
export default RemoveRowOutline;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const SplitCells = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
id="Layer_1"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
viewBox="0 0 24 24"
|
|
7
|
+
width="24px"
|
|
8
|
+
height="24px"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path d="M3.5,20.5V3.5h5.8v1.5h-4.3v14h4.3v1.5H3.5ZM12.8,21.5h-1.5V2.5h1.5v19ZM5,19V5v14ZM14.8,20.5v-1.5h4.3s0-14,0-14h-4.3v-1.5h5.8v17h-5.8Z" />
|
|
12
|
+
</svg>
|
|
13
|
+
);
|
|
14
|
+
export default SplitCells;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const SplitScene = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M100-180v-600h262.31v60H160v480h202.31v60H100Zm350 80v-760h60v80h350v600H510v80h-60Zm60-140h290v-480H510v480Zm290 0v-480 480Zm-640 0v-480 480Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default SplitScene;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const Subscript = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M783.84-180q-15.36 0-25.75-10.4-10.4-10.39-10.4-25.76v-35.38q0-15.36 10.4-25.76 10.39-10.39 25.75-10.39H860v-36.93h-94.62q-7.07 0-12.38-5.3-5.31-5.31-5.31-12.39 0-7.07 5.31-12.38 5.31-5.31 12.38-5.31h93.85q15.36 0 25.76 10.39 10.39 10.4 10.39 25.76v35.39q0 15.36-10.39 25.76-10.4 10.39-25.76 10.39h-76.15v36.92h94.61q7.08 0 12.39 5.31 5.3 5.31 5.3 12.39 0 7.07-5.3 12.38-5.31 5.31-12.39 5.31h-93.85Zm-465.17-72.31q-20.08 0-29.37-17.04-9.3-17.03 1.24-34.26l143.31-223.54-129.93-202.16q-10.53-16.61-1.24-33.65 9.3-17.04 28.63-17.04 8.92 0 16.26 4.09 7.33 4.09 11.74 11.53l119.07 188.23h2.47l119.61-188.62q4.38-7.25 12.04-11.24 7.65-3.99 15.86-3.99 20.13 0 29.08 17.04 8.94 17.04-1.59 34.27L524.77-527.15l144.69 223.54q10.54 17.23.9 34.26-9.63 17.04-28.9 17.04-8.84 0-16.21-4.09-7.37-4.09-11.79-11.52L480.85-475.08h-2.47L346.54-267.92q-4.38 7.43-12.04 11.52-7.65 4.09-15.83 4.09Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default Subscript;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const Superscript = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M783.84-600q-15.36 0-25.75-10.39-10.4-10.4-10.4-25.76v-35.39q0-15.36 10.4-25.76 10.39-10.39 25.75-10.39H860v-36.92h-94.62q-7.07 0-12.38-5.31-5.31-5.31-5.31-12.39 0-7.07 5.31-12.38 5.31-5.31 12.38-5.31h93.85q15.36 0 25.76 10.4 10.39 10.39 10.39 25.76v35.38q0 15.36-10.39 25.76-10.4 10.39-25.76 10.39h-76.15v36.93h94.61q7.08 0 12.39 5.3 5.3 5.31 5.3 12.39 0 7.07-5.3 12.38-5.31 5.31-12.39 5.31h-93.85ZM318.67-180q-20.08 0-29.37-17.04-9.3-17.04 1.24-34.27l143.31-223.54L303.92-657q-10.53-16.62-1.24-33.65 9.3-17.04 28.63-17.04 8.92 0 16.26 4.09 7.33 4.09 11.74 11.52l119.07 188.24h2.47l119.61-188.62q4.38-7.25 12.04-11.24 7.65-3.99 15.86-3.99 20.13 0 29.08 17.04 8.94 17.03-1.59 34.26L524.77-454.85l144.69 223.54q10.54 17.23.9 34.27-9.63 17.04-28.9 17.04-8.84 0-16.21-4.09-7.37-4.09-11.79-11.53L480.85-402.77h-2.47L346.54-195.62q-4.38 7.44-12.04 11.53-7.65 4.09-15.83 4.09Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default Superscript;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const Underline = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
viewBox="0 0 24 24"
|
|
6
|
+
fill="currentColor"
|
|
7
|
+
width="24px"
|
|
8
|
+
height="24px"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path d="M8 3V12C8 14.2091 9.79086 16 12 16C14.2091 16 16 14.2091 16 12V3H18V12C18 15.3137 15.3137 18 12 18C8.68629 18 6 15.3137 6 12V3H8ZM4 20H20V22H4V20Z" />
|
|
12
|
+
</svg>
|
|
13
|
+
);
|
|
14
|
+
export default Underline;
|
package/icons/Undo.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const Undo = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M288.08-220v-60h287.07q62.62 0 107.77-41.35 45.16-41.34 45.16-102.11 0-60.77-45.16-101.93-45.15-41.15-107.77-41.15H294.31l111.3 111.31-42.15 42.15L180-596.54 363.46-780l42.15 42.15-111.3 111.31h280.84q87.77 0 150.35 58.58t62.58 144.5q0 85.92-62.58 144.69Q662.92-220 575.15-220H288.08Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default Undo;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const VerticalAlignBottom = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M180-140v-60h600v60H180Zm300-153.85L293.85-480 336-522.15l114 114V-820h60v411.85l114-114L666.15-480 480-293.85Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default VerticalAlignBottom;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const VerticalAlignCenter = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M450-100v-188l-74 74-42.15-42.16L480-402.31l146.15 146.15L584-214l-74-74v188h-60ZM180-450v-60h600v60H180Zm300-107.69L333.85-703.84 376-746l74 74v-188h60v188l74-74 42.15 42.16L480-557.69Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default VerticalAlignCenter;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const VerticalAlignTop = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
height="24px"
|
|
6
|
+
viewBox="0 -960 960 960"
|
|
7
|
+
width="24px"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M180-760v-60h600v60H180Zm270 620v-411.85l-114 114L293.85-480 480-666.15 666.15-480 624-437.85l-114-114V-140h-60Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default VerticalAlignTop;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) -->
|
|
4
|
+
<polygon points="3.5 14.8 5 14.8 5 12.8 7 12.8 7 11.3 5 11.3 5 9.3 3.5 9.3 3.5 11.3 1.5 11.3 1.5 12.8 3.5 12.8 3.5 14.8"/>
|
|
5
|
+
<path d="M3.5,3.5v3.6h1.5v-2.1h6.3v14h-6.3v-2.1h-1.5v3.6h17V3.5H3.5ZM19,19h-6.2V5h6.2v14Z"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) -->
|
|
4
|
+
<path d="M19,19h-6.2V5h6.2v2.1h1.5v-3.6H3.5v17h17v-3.6h-1.5v2.1ZM5,5h6.3v14h-6.3V5Z"/>
|
|
5
|
+
<polygon points="20.5 11.3 20.5 9.3 19 9.3 19 11.3 17 11.3 17 12.8 19 12.8 19 14.8 20.5 14.8 20.5 12.8 22.5 12.8 22.5 11.3 20.5 11.3"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Layer_3" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) -->
|
|
4
|
+
<polygon points="11.3 7 12.8 7 12.8 5 14.8 5 14.8 3.5 12.8 3.5 12.8 1.5 11.3 1.5 11.3 3.5 9.3 3.5 9.3 5 11.3 5 11.3 7"/>
|
|
5
|
+
<path d="M16.9,3.5v1.5h2.1v6.2H5v-6.2h2.1v-1.5h-3.6v17h17V3.5h-3.6ZM5,19v-6.3h14v6.3H5Z"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) -->
|
|
4
|
+
<polygon points="12.8 17 11.3 17 11.3 19 9.3 19 9.3 20.5 11.3 20.5 11.3 22.5 12.8 22.5 12.8 20.5 14.8 20.5 14.8 19 12.8 19 12.8 17"/>
|
|
5
|
+
<path d="M3.5,3.5v17h3.6v-1.5h-2.1v-6.3h14v6.3h-2.1v1.5h3.6V3.5H3.5ZM5,11.2v-6.2h14v6.2H5Z"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M450-100v-193.85H260v-100.76h190v-170.78H140v-100.76h310V-860h60v193.85h310v100.76H510v170.78h190v100.76H510V-100h-60Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M115.39-100v-760h60v760h-60Zm151.54-193.85v-100.76h337.68v100.76H266.93Zm0-271.54v-100.76h577.68v100.76H266.93Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M784.61-100v-760h60v760h-60ZM355.39-293.85v-100.76h337.68v100.76H355.39Zm-240-271.54v-100.76h577.68v100.76H115.39Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M100-110v-60h760v60H100Zm193.85-151.54v-588.84h100.76v588.84H293.85Zm271.54 0v-348.84h100.76v348.84H565.39Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M291.92-140v-310H100v-60h191.92v-310h100.77v310h174.62v-190h100.77v190H860v60H668.08v190H567.31v-190H392.69v310H291.92Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M293.85-110v-588.84h100.76V-110H293.85Zm271.54-240v-348.84h100.76V-350H565.39ZM100-790.38v-60h760v60H100Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M323.77-220 140-480l184.54-260H820v520H323.77Zm32-60H760v-400H355.77L213.38-480l142.39 200Zm93.31-53.85 104-104 104 104L699.23-376l-104-104 104-104-42.15-42.15-104 104-104-104L406.92-584l104 104-104 104 42.16 42.15ZM760-280v-400 400Z"/></svg>
|
package/icons/bold.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M8 11H12.5C13.8807 11 15 9.88071 15 8.5C15 7.11929 13.8807 6 12.5 6H8V11ZM18 15.5C18 17.9853 15.9853 20 13.5 20H6V4H12.5C14.9853 4 17 6.01472 17 8.5C17 9.70431 16.5269 10.7981 15.7564 11.6058C17.0979 12.3847 18 13.837 18 15.5ZM8 13V18H13.5C14.8807 18 16 16.8807 16 15.5C16 14.1193 14.8807 13 13.5 13H8Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M140-140v-680h680v680H140Zm620-60v-250H510v250h250Zm0-560H510v250h250v-250Zm-560 0v250h250v-250H200Zm0 560h250v-250H200v250Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M140-140v-60h680v60H140Zm0-153.85v-64.61h64.62v64.61H140Zm0-153.84v-64.62h64.62v64.62H140Zm0-153.85v-64.61h64.62v64.61H140Zm0-153.84V-820h64.62v64.62H140Zm153.85 307.69v-64.62h64.61v64.62h-64.61Zm0-307.69V-820h64.61v64.62h-64.61Zm153.84 461.53v-64.61h64.62v64.61h-64.62Zm0-153.84v-64.62h64.62v64.62h-64.62Zm0-153.85v-64.61h64.62v64.61h-64.62Zm0-153.84V-820h64.62v64.62h-64.62Zm153.85 307.69v-64.62h64.61v64.62h-64.61Zm0-307.69V-820h64.61v64.62h-64.61Zm153.84 461.53v-64.61H820v64.61h-64.62Zm0-153.84v-64.62H820v64.62h-64.62Zm0-153.85v-64.61H820v64.61h-64.62Zm0-153.84V-820H820v64.62h-64.62Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M140-140v-64.62h64.62V-140H140Zm0-153.85v-64.61h64.62v64.61H140Zm0-153.84v-64.62h64.62v64.62H140Zm0-153.85v-64.61h64.62v64.61H140Zm0-153.84V-820h64.62v64.62H140ZM293.85-140v-64.62h64.61V-140h-64.61Zm0-307.69v-64.62h64.61v64.62h-64.61Zm0-307.69V-820h64.61v64.62h-64.61ZM447.69-140v-64.62h64.62V-140h-64.62Zm0-153.85v-64.61h64.62v64.61h-64.62Zm0-153.84v-64.62h64.62v64.62h-64.62Zm0-153.85v-64.61h64.62v64.61h-64.62Zm0-153.84V-820h64.62v64.62h-64.62ZM601.54-140v-64.62h64.61V-140h-64.61Zm0-307.69v-64.62h64.61v64.62h-64.61Zm0-307.69V-820h64.61v64.62h-64.61ZM755.38-140v-64.62H820V-140h-64.62Zm0-153.85v-64.61H820v64.61h-64.62Zm0-153.84v-64.62H820v64.62h-64.62Zm0-153.85v-64.61H820v64.61h-64.62Zm0-153.84V-820H820v64.62h-64.62Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M140-140v-64.62h64.62V-140H140Zm0-153.85v-64.61h64.62v64.61H140ZM140-450v-60h680v60H140Zm0-151.54v-64.61h64.62v64.61H140Zm0-153.84V-820h64.62v64.62H140ZM293.85-140v-64.62h64.61V-140h-64.61Zm0-615.38V-820h64.61v64.62h-64.61ZM447.69-140v-64.62h64.62V-140h-64.62Zm0-153.85v-64.61h64.62v64.61h-64.62Zm0-307.69v-64.61h64.62v64.61h-64.62Zm0-153.84V-820h64.62v64.62h-64.62ZM601.54-140v-64.62h64.61V-140h-64.61Zm0-615.38V-820h64.61v64.62h-64.61ZM755.38-140v-64.62H820V-140h-64.62Zm0-153.85v-64.61H820v64.61h-64.62Zm0-307.69v-64.61H820v64.61h-64.62Zm0-153.84V-820H820v64.62h-64.62Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M140-140v-64.62h64.62V-140H140Zm0-153.85v-64.61h64.62v64.61H140Zm0-307.69v-64.61h64.62v64.61H140Zm0-153.84V-820h64.62v64.62H140ZM293.85-140v-64.62h64.61V-140h-64.61Zm0-615.38V-820h64.61v64.62h-64.61ZM601.54-140v-64.62h64.61V-140h-64.61Zm153.84 0v-64.62H820V-140h-64.62Zm0-153.85v-64.61H820v64.61h-64.62Zm0-307.69v-64.61H820v64.61h-64.62Zm0-153.84V-820H820v64.62h-64.62Zm-153.84 0V-820h64.61v64.62h-64.61ZM450-140v-310H140v-60h310v-310h60v310h310v60H510v310h-60Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M140-140v-680h60v680h-60Zm153.85 0v-64.62h64.61V-140h-64.61Zm0-307.69v-64.62h64.61v64.62h-64.61Zm0-307.69V-820h64.61v64.62h-64.61ZM447.69-140v-64.62h64.62V-140h-64.62Zm0-153.85v-64.61h64.62v64.61h-64.62Zm0-153.84v-64.62h64.62v64.62h-64.62Zm0-153.85v-64.61h64.62v64.61h-64.62Zm0-153.84V-820h64.62v64.62h-64.62ZM601.54-140v-64.62h64.61V-140h-64.61Zm0-307.69v-64.62h64.61v64.62h-64.61Zm0-307.69V-820h64.61v64.62h-64.61ZM755.38-140v-64.62H820V-140h-64.62Zm0-153.85v-64.61H820v64.61h-64.62Zm0-153.84v-64.62H820v64.62h-64.62Zm0-153.85v-64.61H820v64.61h-64.62Zm0-153.84V-820H820v64.62h-64.62Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M200-200h560v-560H200v560Zm-60 60v-680h680v680H140Zm153.85-307.69v-64.62h64.61v64.62h-64.61Zm153.84 153.84v-64.61h64.62v64.61h-64.62Zm0-153.84v-64.62h64.62v64.62h-64.62Zm0-153.85v-64.61h64.62v64.61h-64.62Zm153.85 153.85v-64.62h64.61v64.62h-64.61Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M140-140v-64.62h64.62V-140H140Zm0-153.85v-64.61h64.62v64.61H140Zm0-153.84v-64.62h64.62v64.62H140Zm0-153.85v-64.61h64.62v64.61H140Zm0-153.84V-820h64.62v64.62H140ZM293.85-140v-64.62h64.61V-140h-64.61Zm0-307.69v-64.62h64.61v64.62h-64.61Zm0-307.69V-820h64.61v64.62h-64.61ZM447.69-140v-64.62h64.62V-140h-64.62Zm0-153.85v-64.61h64.62v64.61h-64.62Zm0-153.84v-64.62h64.62v64.62h-64.62Zm0-153.85v-64.61h64.62v64.61h-64.62Zm0-153.84V-820h64.62v64.62h-64.62ZM601.54-140v-64.62h64.61V-140h-64.61Zm0-307.69v-64.62h64.61v64.62h-64.61Zm0-307.69V-820h64.61v64.62h-64.61ZM760-140v-680h60v680h-60Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M140-140v-64.62h64.62V-140H140Zm0-153.85v-64.61h64.62v64.61H140Zm0-153.84v-64.62h64.62v64.62H140Zm0-153.85v-64.61h64.62v64.61H140ZM140-760v-60h680v60H140Zm153.85 620v-64.62h64.61V-140h-64.61Zm0-307.69v-64.62h64.61v64.62h-64.61ZM447.69-140v-64.62h64.62V-140h-64.62Zm0-153.85v-64.61h64.62v64.61h-64.62Zm0-153.84v-64.62h64.62v64.62h-64.62Zm0-153.85v-64.61h64.62v64.61h-64.62ZM601.54-140v-64.62h64.61V-140h-64.61Zm0-307.69v-64.62h64.61v64.62h-64.61ZM755.38-140v-64.62H820V-140h-64.62Zm0-153.85v-64.61H820v64.61h-64.62Zm0-153.84v-64.62H820v64.62h-64.62Zm0-153.85v-64.61H820v64.61h-64.62Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M140-140v-64.62h64.62V-140H140Zm0-153.85v-64.61h64.62v64.61H140Zm0-153.84v-64.62h64.62v64.62H140Zm0-153.85v-64.61h64.62v64.61H140Zm0-153.84V-820h64.62v64.62H140ZM293.85-140v-64.62h64.61V-140h-64.61Zm0-307.69v-64.62h64.61v64.62h-64.61Zm0-307.69V-820h64.61v64.62h-64.61ZM450-140v-680h60v680h-60Zm151.54 0v-64.62h64.61V-140h-64.61Zm0-307.69v-64.62h64.61v64.62h-64.61Zm0-307.69V-820h64.61v64.62h-64.61ZM755.38-140v-64.62H820V-140h-64.62Zm0-153.85v-64.61H820v64.61h-64.62Zm0-153.84v-64.62H820v64.62h-64.62Zm0-153.85v-64.61H820v64.61h-64.62Zm0-153.84V-820H820v64.62h-64.62Z"/></svg>
|
package/icons/close.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M256-213.85 213.85-256l224-224-224-224L256-746.15l224 224 224-224L746.15-704l-224 224 224 224L704-213.85l-224-224-224 224Z"/></svg>
|
package/icons/delete.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M220-140v-580h-40v-60h180v-35.38h240V-780h180v60h-40v580H220Zm60-60h400v-520H280v520Zm96.16-80h59.99v-360h-59.99v360Zm147.69 0h59.99v-360h-59.99v360ZM280-720v520-520Z"/></svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) -->
|
|
4
|
+
<path d="M4,19h4.3V5h-4.3v14ZM9.8,19h4.3V5h-4.3s0,14,0,14ZM15.7,19h4.3V5h-4.3s0,14,0,14ZM21.5,20.5H2.5V3.5h19v17Z"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M140-140v-680h64.62v680H140Zm615.38 0v-680H820v680h-64.62ZM293.85-447.69v-64.62h64.61v64.62h-64.61Zm153.84 0v-64.62h64.62v64.62h-64.62Zm153.85 0v-64.62h64.61v64.62h-64.61Z"/></svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) -->
|
|
4
|
+
<g id="Layer_11" data-name="Layer_1">
|
|
5
|
+
<rect x="2.5" y="3.5" width="1.6" height="17"/>
|
|
6
|
+
<rect x="19.9" y="3.5" width="1.6" height="17"/>
|
|
7
|
+
</g>
|
|
8
|
+
<g id="Layer_3">
|
|
9
|
+
<polygon points="15.2 15.5 14.1 14.4 15.8 12.8 10.3 12.8 10.3 11.3 15.8 11.3 14.1 9.6 15.2 8.5 18.6 12 15.2 15.5"/>
|
|
10
|
+
<polygon points="8.8 15.5 5.4 12 8.8 8.5 9.9 9.6 8.2 11.3 13.8 11.3 13.8 12.8 8.2 12.8 9.9 14.4 8.8 15.5"/>
|
|
11
|
+
</g>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M140-140v-60h680v60H140Zm160-155v-60h360v60H300ZM140-450v-60h680v60H140Zm160-155v-60h360v60H300ZM140-760v-60h680v60H140Z"/></svg>
|