24 lines
778 B
JavaScript
24 lines
778 B
JavaScript
// src/icons.js
|
|
import { Bold, Italic, Underline, Strikethrough, List, NumberedListLeft, Table, Table2Columns, ArrowRight, ArrowDown, TableRows,
|
|
AlignTopBox, AlignLeftBox, StatsReport, OpenInWindow, Download
|
|
} from '@iconoir/vue';
|
|
|
|
export {
|
|
Bold as BoldIcon,
|
|
Italic as ItalicIcon,
|
|
Underline as UnderlineIcon,
|
|
Strikethrough as StrikethroughIcon,
|
|
List as ListIcon,
|
|
NumberedListLeft as NumberedListLeftIcon,
|
|
Table as TableIcon,
|
|
Table2Columns as Table2ColumnsIcon,
|
|
ArrowRight as ArrowRightIcon,
|
|
ArrowDown as ArrowDownIcon,
|
|
TableRows as TableRowsIcon,
|
|
AlignTopBox as AlignTopBoxIcon,
|
|
AlignLeftBox as AlignLeftBoxIcon,
|
|
StatsReport as StatsReportIcon,
|
|
OpenInWindow as OpenInWindowIcon,
|
|
Download as DownloadIcon,
|
|
};
|