36 lines
1.8 KiB
TypeScript
36 lines
1.8 KiB
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
export { default as boldIcon } from "./type-bold.svg";
|
|
export { default as italicIcon } from "./type-italic.svg";
|
|
export { default as underlineIcon } from "./type-underline.svg";
|
|
export { default as superscriptIcon } from "./format-superscript.svg";
|
|
export { default as subscriptIcon } from "./format-subscript.svg";
|
|
export { default as eraserIcon } from "./eraser.svg";
|
|
|
|
export { default as ulIcon } from "./list-ul.svg";
|
|
export { default as olIcon } from "./list-ol.svg";
|
|
export { default as listOptionsIcon } from "./text-paragraph.svg";
|
|
|
|
export { default as justifyFullIcon } from "./justify.svg";
|
|
export { default as justifyLeftIcon } from "./text-left.svg";
|
|
export { default as justifyRightIcon } from "./text-right.svg";
|
|
export { default as justifyCenterIcon } from "./text-center.svg";
|
|
|
|
export { default as indentIcon } from "./text-indent-left.svg";
|
|
export { default as outdentIcon } from "./text-indent-right.svg";
|
|
|
|
export { default as squareFillIcon } from "./square-fill.svg";
|
|
export { default as textColorIcon } from "./format-color-text.svg";
|
|
export { default as highlightColorIcon } from "./format-color-highlight.svg";
|
|
export { default as colorHelperIcon } from "./color-helper.svg";
|
|
|
|
export { default as paperclipIcon } from "./paperclip.svg";
|
|
export { default as micIcon } from "./mic.svg";
|
|
export { default as bracketsIcon } from "./code-brackets.svg";
|
|
export { default as functionIcon } from "./function-variant.svg";
|
|
export { default as xmlIcon } from "./xml.svg";
|
|
|
|
export const arrowIcon =
|
|
'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="transparent" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2 5l6 6 6-6"/></svg>';
|