UNPKG

amis-theme-editor

Version:

amis主题编辑器

53 lines (50 loc) 2.21 kB
/** * amis-theme-editor v2.0.22-beta.2 * Copyright 2018-2023 @fex */ import { registerIcon } from 'amis'; export { Icon } from 'amis'; import SvgCheckboxCheck from './checkbox-check.svg.js'; import SvgCheckbox from './checkbox.svg.js'; import SvgCode from './code.svg.js'; import SvgComponent from './component.svg.js'; import SvgGlobal from './global.svg.js'; import SvgCustom from './custom.svg.js'; import SvgLock from './lock.svg.js'; import SvgUnlock from './unlock.svg.js'; import SvgItalic from './italic.svg.js'; import SvgUnderline from './underline.svg.js'; import SvgLineThrough from './line-through.svg.js'; import SvgTextLeft from './text-left.svg.js'; import SvgTextCenter from './text-center.svg.js'; import SvgTextRight from './text-right.svg.js'; import SvgTextJustify from './text-justify.svg.js'; import SvgVerticalTop from './vertical-top.svg.js'; import SvgVerticalMiddle from './vertical-middle.svg.js'; import SvgVerticalBottom from './vertical-bottom.svg.js'; import SvgAddButton from './add-button.svg.js'; import SvgDeleteButton from './delete-button.svg.js'; import SvgColorPickerImg from './color-picker-img.svg.js'; import SvgColorPickerImgActive from './color-picker-img-active.svg.js'; registerIcon('checkbox-check', SvgCheckboxCheck); registerIcon('checkbox', SvgCheckbox); registerIcon('code', SvgCode); registerIcon('component', SvgComponent); registerIcon('global', SvgGlobal); registerIcon('custom', SvgCustom); registerIcon('lock', SvgLock); registerIcon('unlock', SvgUnlock); registerIcon('italic', SvgItalic); registerIcon('underline', SvgUnderline); registerIcon('line-through', SvgLineThrough); registerIcon('text-align-left', SvgTextLeft); registerIcon('text-align-center', SvgTextCenter); registerIcon('text-align-right', SvgTextRight); registerIcon('text-align-justify', SvgTextJustify); registerIcon('vertical-align-top', SvgVerticalTop); registerIcon('vertical-align-middle', SvgVerticalMiddle); registerIcon('vertical-align-bottom', SvgVerticalBottom); registerIcon('add-button', SvgAddButton); registerIcon('delete-button', SvgDeleteButton); registerIcon('color-picker-img', SvgColorPickerImg); registerIcon('color-picker-img-active', SvgColorPickerImgActive);