anki/ts/editor/icons.ts
2021-09-15 13:33:12 +02:00

52 lines
2.5 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 ellipseIcon } from "./contain.svg";
export { default as functionIcon } from "./function-variant.svg";
export { default as xmlIcon } from "./xml.svg";
export { default as tagIcon } from "./tag.svg";
export { default as addTagIcon } from "./tag-plus.svg";
export { default as dotsIcon } from "./dots-vertical.svg";
export { default as deleteIcon } from "./x.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>';
// image handle
export { default as floatNoneIcon } from "./format-float-none.svg";
export { default as floatLeftIcon } from "./format-float-left.svg";
export { default as floatRightIcon } from "./format-float-right.svg";
export { default as sizeActual } from "./image-size-select-actual.svg";
export { default as sizeMinimized } from "./image-size-select-large.svg";
export { default as inlineIcon } from "./format-wrap-square.svg";
export { default as blockIcon } from "./format-wrap-top-bottom.svg";