f534dbb8e5
* Put PlainTextInput into its own directory * Create a directory for RichTextInput * Create editor-toolbar directory * Move PreviewButton into editor-toolbar * The time to refactor this is not quite yet here * Create tag-editor directory * Remove some of the uses of WithShortcut * Remove all uses of WithShortcut from editor package * Remove last uses of WithShortcut * Fix typo
18 lines
737 B
TypeScript
18 lines
737 B
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
/// <reference types="../lib/image-import" />
|
|
|
|
export { default as descriptionIcon } from "bootstrap-icons/icons/info-circle.svg";
|
|
|
|
export { default as alertIcon } from "@mdi/svg/svg/alert.svg";
|
|
|
|
export { default as richTextOn } from "@mdi/svg/svg/eye-outline.svg";
|
|
export { default as richTextOff } from "@mdi/svg/svg/eye-off-outline.svg";
|
|
|
|
export { default as htmlOn } from "@mdi/svg/svg/code-tags.svg";
|
|
export { default as htmlOff } from "@mdi/svg/svg/xml.svg";
|
|
|
|
export { default as stickyOn } from "@mdi/svg/svg/pin-outline.svg";
|
|
export { default as stickyOff } from "@mdi/svg/svg/pin-off-outline.svg";
|