diff --git a/internals/automate/src/build-svg-to-js/config.ts b/internals/automate/src/build-svg-to-js/config.ts index 8a4d57abd1..4967898066 100644 --- a/internals/automate/src/build-svg-to-js/config.ts +++ b/internals/automate/src/build-svg-to-js/config.ts @@ -2,6 +2,4 @@ export const svgsPath = '../../packages/theme/src/svgs' export const iconsPath = '../../packages/vue-icon' -export const rewriteConfig = { - acceptance: 'activation' -} +export const rewriteConfig = {} diff --git a/internals/automate/src/build-svg-to-js/index.ts b/internals/automate/src/build-svg-to-js/index.ts index 048e649517..3715357346 100644 --- a/internals/automate/src/build-svg-to-js/index.ts +++ b/internals/automate/src/build-svg-to-js/index.ts @@ -43,6 +43,16 @@ interface FileInfo { const camelize = (str) => str.replace(/-(\w)/g, (_, c) => (c ? c.toUpperCase() : '')) const isSaas = process.argv.includes('--icon-saas') const { svgsPath, iconsPath, rewriteConfig } = isSaas ? configSaas : config +const themePackage = isSaas ? '@opentiny/vue-theme-saas' : '@opentiny/vue-theme' +const iconsSrcPath = `${iconsPath}/src` + +// 生成前清理旧的图标产物,避免目录缺失导致写入失败 +try { + fs.rmSync(iconsSrcPath, { recursive: true, force: true }) +} catch (error) { + console.warn(`[build-svg-to-js] 清理目录失败: ${iconsSrcPath}`, error) +} +fs.mkdirSync(iconsSrcPath, { recursive: true }) // 1、统计svgs信息 const svgsMap: Record = {} @@ -87,8 +97,8 @@ Object.values(svgsMap).forEach((item) => { fillList.push({ capName, svgName: item.svgName }) const tmplStr = ` import { svg } from '@opentiny/vue-common' -import ${capName} from '@opentiny/vue-theme/svgs/${item.svgName}.svg' -import ${capName}Filled from '@opentiny/vue-theme/svgs/${item.svgName + '-filled'}.svg' +import ${capName} from '${themePackage}/svgs/${item.svgName}.svg' +import ${capName}Filled from '${themePackage}/svgs/${item.svgName + '-filled'}.svg' export default () => svg({ name: 'Icon${capName}', component: ${capName}, filledComponent: ${capName}Filled })() ` @@ -100,7 +110,7 @@ export default () => svg({ name: 'Icon${capName}', component: ${capName}, filled uncheckedList.push({ capName, svgName: item.svgName }) const tmplStr = ` import { svg } from '@opentiny/vue-common' -import ${capName} from '@opentiny/vue-theme/svgs/${item.svgName}.svg' +import ${capName} from '${themePackage}/svgs/${item.svgName}.svg' export default () => svg({ name: 'Icon${capName}', component: ${capName}, filledComponent: ${capName} })() ` diff --git a/internals/cli/src/commands/build/build-ui.ts b/internals/cli/src/commands/build/build-ui.ts index 1bdf85cd8a..a0a597effb 100644 --- a/internals/cli/src/commands/build/build-ui.ts +++ b/internals/cli/src/commands/build/build-ui.ts @@ -450,6 +450,8 @@ export async function buildUi( tasks.push(...getAllIcons()) } + // return true + // 构建 @opentiny/vue if (names.some((name) => ['@opentiny/vue', '@opentiny/vue', 'vue'].includes(name))) { tasks.push(...getEntryTasks()) diff --git a/internals/cli/src/shared/module-utils.ts b/internals/cli/src/shared/module-utils.ts index 0a387d8258..4c53b68850 100644 --- a/internals/cli/src/shared/module-utils.ts +++ b/internals/cli/src/shared/module-utils.ts @@ -461,19 +461,19 @@ const createModuleMapping = (componentName, isMobile = false) => { } const getAllIcons = () => { - const entries = fg.sync('vue-icon*/src/*', { cwd: pathFromWorkspaceRoot('packages'), onlyDirectories: true }) + const entries = fg.sync('vue-icon*/src/*.ts', { cwd: pathFromWorkspaceRoot('packages') }) return entries.map((item) => { - const name = path.basename(item) + const name = path.basename(item).replace('.ts', '') return { - path: item + '/index.ts', - libPath: item.replace('/src/', '/lib/'), + path: item, + libPath: item.replace('/src/', '/lib/').replace('.ts', ''), type: 'component', componentType: 'icon', name: kebabCase({ str: name }), global: capitalizeKebabCase(name), - importName: '@opentiny/vue-' + item + importName: '@opentiny/vue-' + item.replace('.ts', '') } as Module }) } diff --git a/package.json b/package.json index 67cdb645b0..557f7eaf1b 100644 --- a/package.json +++ b/package.json @@ -55,7 +55,7 @@ "// ---------- 打包运行时组件库 ----------": "", "build:runtime": "pnpm create:icon-saas && pnpm -C internals/cli build:runtime", "// ---------- 构建相关脚本 ----------": "", - "build:ui": "pnpm create:icon-saas && pnpm create:mapping && pnpm build:entry && pnpm -C internals/cli build:ui", + "build:ui": "pnpm build:svgs2iconSaas && pnpm create:mapping && pnpm build:entry && pnpm -C internals/cli build:ui", "build:chartTheme": "pnpm -C internals/cli build:chartTheme", "build:renderless": "pnpm -C packages/renderless build:fast", "build:theme": "pnpm -C packages/theme build:fast", diff --git a/packages/vue-icon/index.ts b/packages/vue-icon/index.ts index da7e083662..2ed8c8cde3 100644 --- a/packages/vue-icon/index.ts +++ b/packages/vue-icon/index.ts @@ -1,19 +1,12 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ - -import IconPromptExclamation from './src/prompt-exclamation' +import IconEditorEraser from './src/editor-eraser' import IconAcceptance from './src/acceptance' +import IconActivation from './src/activation' +import IconAddCircle from './src/add-circle' +import IconAddPicture from './src/add-picture' import IconAdd from './src/add' +import IconAdministratorO from './src/administrator-o' import IconAdministrator from './src/administrator' +import IconAgency from './src/agency' import IconAgendaView from './src/agenda-view' import IconAlignBaseline from './src/align-baseline' import IconAlignCenter from './src/align-center' @@ -38,17 +31,23 @@ import IconArrowUp from './src/arrow-up' import IconAscending from './src/ascending' import IconAssociation from './src/association' import IconAttachment from './src/attachment' +import IconAudio from './src/audio' +import IconAudit from './src/audit' +import IconAutomaticAssessment from './src/automatic-assessment' +import IconAverageShippingPeriod from './src/average-shipping-period' import IconBadgeHotCn from './src/badge-hot-cn' import IconBadgeHotEn from './src/badge-hot-en' import IconBadgeNewCn from './src/badge-new-cn' import IconBadgeNewEn from './src/badge-new-en' import IconBarChart from './src/bar-chart' +import IconBatchFill from './src/batch-fill' import IconBefilter from './src/befilter' import IconBoat from './src/boat' import IconBoxSolid from './src/box-solid' import IconBusy from './src/busy' import IconCalculator from './src/calculator' import IconCalendar from './src/calendar' +import IconCardMode from './src/card-mode' import IconCheckOut from './src/check-out' import IconCheck from './src/check' import IconCheckedLinear from './src/checked-linear' @@ -75,19 +74,22 @@ import IconCopySolid from './src/copy-solid' import IconCopy from './src/copy' import IconCourse from './src/course' import IconCreating from './src/creating' -import IconCueL from './src/cue-l' +import IconCrop from './src/crop' import IconCueLO from './src/cue-l-o' +import IconCueL from './src/cue-l' import IconCustom from './src/custom' import IconCustomerService from './src/customer-service' -import IconCrop from './src/crop' +import IconCustomsClearanceForm from './src/customs-clearance-form' +import IconCustomsDeclaration from './src/customs-declaration' import IconDataSource from './src/data-source' import IconDayView from './src/day-view' import IconDefault from './src/default' import IconDefinedFiltration from './src/defined-filtration' import IconDel from './src/del' -import IconDelete from './src/delete' +import IconDelegatedProcessing from './src/delegated-processing' import IconDeleteL from './src/delete-l' import IconDeletePage from './src/delete-page' +import IconDelete from './src/delete' import IconDeleted from './src/deleted' import IconDeltaDownO from './src/delta-down-o' import IconDeltaDown from './src/delta-down' @@ -95,7 +97,6 @@ import IconDeltaLeftO from './src/delta-left-o' import IconDeltaLeft from './src/delta-left' import IconDeltaRightO from './src/delta-right-o' import IconDeltaRight from './src/delta-right' -import IconDelegatedProcessing from './src/delegated-processing' import IconDeltaUpO from './src/delta-up-o' import IconDeltaUp from './src/delta-up' import IconDerive from './src/derive' @@ -105,35 +106,26 @@ import IconDialog from './src/dialog' import IconDialog2 from './src/dialog2' import IconDirectionCol from './src/direction-col' import IconDirectionRow from './src/direction-row' +import IconDisallowance from './src/disallowance' +import IconDiscountSup from './src/discount-sup' +import IconDocument from './src/document' +import IconDoneMini from './src/done-mini' +import IconDone from './src/done' import IconDotChart from './src/dot-chart' import IconDotDownload from './src/dot-download' import IconDotIpv4 from './src/dot-ipv4' import IconDoubleLeft from './src/double-left' import IconDoubleRight from './src/double-right' import IconDownO from './src/down-o' +import IconDownWard from './src/down-ward' import IconDown from './src/down' import IconDownloadCloud from './src/download-cloud' import IconDownloadLink from './src/download-link' import IconDownload from './src/download' import IconDraft from './src/draft' +import IconDrawFlowchart from './src/draw-flowchart' +import IconEarthLined from './src/earth-lined' import IconEdit from './src/edit' -import IconEditor from './src/editor' -import IconEditorTab from './src/editor-tab' -import IconEllipsis from './src/ellipsis' -import IconEmailAdd from './src/email-add' -import IconEmailCircle from './src/email-circle' -import IconEnd from './src/end' -import IconError from './src/error' -import IconEspaceAuto from './src/espace-auto' -import IconEspace from './src/espace' -import IconExcel from './src/excel' -import IconException from './src/exception' -import IconExclamation from './src/exclamation' -import IconExport from './src/export' -import IconExpressSearch from './src/express-search' -import IconEyeclose from './src/eyeclose' -import IconEyeopen from './src/eyeopen' -import IconFeedback from './src/feedback' import IconEditorAlignCenter from './src/editor-align-center' import IconEditorAlignLeft from './src/editor-align-left' import IconEditorAlignRight from './src/editor-align-right' @@ -141,12 +133,11 @@ import IconEditorBackground from './src/editor-background' import IconEditorBold from './src/editor-bold' import IconEditorCode from './src/editor-code' import IconEditorDeleteline from './src/editor-deleteline' -import IconEditorEraser from './src/editor-eraser' import IconEditorItalic from './src/editor-italic' import IconEditorLeftBorder from './src/editor-left-border' -import IconEditorList from './src/editor-list' import IconEditorListDot from './src/editor-list-dot' import IconEditorListNum from './src/editor-list-num' +import IconEditorList from './src/editor-list' import IconEditorMenuLeft from './src/editor-menu-left' import IconEditorMenuRight from './src/editor-menu-right' import IconEditorQuote from './src/editor-quote' @@ -155,43 +146,72 @@ import IconEditorRightBorder from './src/editor-right-border' import IconEditorSub from './src/editor-sub' import IconEditorSubtitle from './src/editor-subtitle' import IconEditorSuper from './src/editor-super' +import IconEditorTab from './src/editor-tab' import IconEditorTable from './src/editor-table' import IconEditorTextcolor from './src/editor-textcolor' import IconEditorTitle from './src/editor-title' import IconEditorUnderline from './src/editor-underline' import IconEditorUndo from './src/editor-undo' import IconEditorVideo from './src/editor-video' +import IconEditor from './src/editor' +import IconEllipsis from './src/ellipsis' +import IconEmailAdd from './src/email-add' +import IconEmailCircle from './src/email-circle' +import IconEnd from './src/end' +import IconEngineWorkflow from './src/engine-workflow' +import IconError from './src/error' +import IconEspaceAuto from './src/espace-auto' +import IconEspace from './src/espace' +import IconExcelType from './src/excel-type' +import IconExcel from './src/excel' +import IconExceptionMiniO from './src/exception-mini-o' +import IconExceptionO from './src/exception-o' +import IconException from './src/exception' +import IconExclamation from './src/exclamation' +import IconExecutionPhase from './src/execution-phase' +import IconExpand from './src/expand' +import IconExport from './src/export' +import IconExpressSearch from './src/express-search' +import IconEyeclose from './src/eyeclose' +import IconEyeopen from './src/eyeopen' +import IconFeedback from './src/feedback' import IconFileCloudupload from './src/file-cloudupload' import IconFileExcel from './src/file-excel' +import IconFileType from './src/file-type' import IconFile from './src/file' import IconFilesCircle from './src/files-circle' import IconFiles from './src/files' import IconFiletext from './src/filetext' -import IconFilletExternalLink from './src/fillet-external-link' +import IconFileuploadPro from './src/fileupload-pro' import IconFileupload from './src/fileupload' +import IconFilletExternalLink from './src/fillet-external-link' import IconFilter from './src/filter' import IconFiltered from './src/filtered' +import IconFinishO from './src/finish-o' +import IconFinish from './src/finish' import IconFlag from './src/flag' -import IconFolder from './src/folder' -import IconFolderClosed from './src/folder-closed' import IconFolderClosedSolid from './src/folder-closed-solid' -import IconFolderOpened from './src/folder-opened' +import IconFolderClosed from './src/folder-closed' import IconFolderOpenedSolid from './src/folder-opened-solid' +import IconFolderOpened from './src/folder-opened' +import IconFolder from './src/folder' import IconFontColor from './src/font-color' import IconFontFamily from './src/font-family' import IconFontSize from './src/font-size' import IconFontStyle from './src/font-style' import IconFontWeight from './src/font-weight' -import IconFreeze from './src/freeze' import IconFreezeLeft from './src/freeze-left' import IconFreezeRight from './src/freeze-right' +import IconFreeze from './src/freeze' import IconFrownO from './src/frown-o' import IconFrown from './src/frown' -import IconFullscreen from './src/fullscreen' import IconFullscreenLeft from './src/fullscreen-left' import IconFullscreenRight from './src/fullscreen-right' +import IconFullscreen from './src/fullscreen' +import IconGenerating from './src/generating' import IconGoBack from './src/go-back' import IconGrade from './src/grade' +import IconGridNoData from './src/grid-no-data' import IconGroupTransfer from './src/group-transfer' import IconGroup from './src/group' import IconHalfchecked from './src/halfchecked' @@ -205,12 +225,15 @@ import IconHelpful from './src/helpful' import IconHideLeft from './src/hide-left' import IconHideRight from './src/hide-right' import IconHideTopleft from './src/hide-topleft' -import IconImport from './src/import' +import IconHistoryRecord from './src/history-record' +import IconImageAdd from './src/image-add' import IconImageError from './src/image-error' +import IconImport from './src/import' import IconInfoCircle from './src/info-circle' import IconInfoSolid from './src/info-solid' import IconInfo from './src/info' import IconInformation from './src/information' +import IconItemPlanningProperties from './src/item-planning-properties' import IconJs from './src/js' import IconJusitfyCenter from './src/jusitfy-center' import IconJusitfyFlexEnd from './src/jusitfy-flex-end' @@ -221,43 +244,78 @@ import IconLanguage from './src/language' import IconLeave from './src/leave' import IconLeftFrozen from './src/left-frozen' import IconLeftO from './src/left-o' +import IconLeftWardArrow from './src/left-ward-arrow' import IconLeftWard from './src/left-ward' import IconLeft from './src/left' +import IconLightningLine from './src/lightning-line' +import IconLightning from './src/lightning' import IconLineChart from './src/line-chart' import IconLineHeight from './src/line-height' import IconLineThrought from './src/line-throught' import IconLink from './src/link' -import IconLoading from './src/loading' +import IconListMode from './src/list-mode' import IconLoadingShadow from './src/loading-shadow' +import IconLoading from './src/loading' import IconLocalePanel from './src/locale-panel' +import IconLocationNumber from './src/location-number' +import IconLocation from './src/location' import IconLock from './src/lock' import IconMailContent from './src/mail-content' import IconMail from './src/mail' +import IconMainFreightSettled from './src/main-freight-settled' +import IconMainFreightToBeSettled from './src/main-freight-to-be-settled' +import IconMaintainInspectionRecords from './src/maintain-inspection-records' import IconMale from './src/male' import IconMarkOn from './src/mark-on' +import IconMaterial from './src/material' import IconMeh from './src/meh' import IconMessageCircle from './src/message-circle' -import IconMinscreen from './src/minscreen' +import IconMic from './src/mic' +import IconMilestone from './src/milestone' import IconMinscreenLeft from './src/minscreen-left' +import IconMinscreenRight from './src/minscreen-right' +import IconMinscreen from './src/minscreen' import IconMinusCircle from './src/minus-circle' import IconMinusSquare from './src/minus-square' import IconMinus from './src/minus' +import IconMobileCheckboxHalf from './src/mobile-checkbox-half' +import IconMobileCheckboxSelected from './src/mobile-checkbox-selected' +import IconMobileCheckbox from './src/mobile-checkbox' +import IconMobileErrorWhite from './src/mobile-error-white' +import IconMobileRadioSelected from './src/mobile-radio-selected' +import IconMobileRadio from './src/mobile-radio' +import IconMobileSuccessWhite from './src/mobile-success-white' import IconMobileView from './src/mobile-view' import IconMobile from './src/mobile' import IconMonthView from './src/month-view' import IconMore from './src/more' +import IconMsg from './src/msg' import IconNew from './src/new' +import IconNoData from './src/no-data' +import IconNoNews from './src/no-news' +import IconNoPerm from './src/no-perm' import IconNoPremission from './src/no-premission' +import IconNoResult from './src/no-result' import IconNodeOpen from './src/node-open' import IconNode from './src/node' import IconNodejs from './src/nodejs' import IconNone from './src/none' +import IconNotStartedMini from './src/not-started-mini' +import IconNotStarted from './src/not-started' +import IconOfd from './src/ofd' import IconOffLine from './src/off-line' +import IconOnGoingMini from './src/on-going-mini' +import IconOnGoing from './src/on-going' import IconOnLine from './src/on-line' -import IconOperationfaildL from './src/operationfaild-l' import IconOperation from './src/operation' +import IconOperationfaildL from './src/operationfaild-l' import IconOperationfaild from './src/operationfaild' +import IconOtherType from './src/other-type' import IconOuterLink from './src/outer-link' +import IconPageNoperm from './src/page-noperm' +import IconPageNothing from './src/page-nothing' +import IconPageServererror from './src/page-servererror' +import IconPageWeaknet from './src/page-weaknet' import IconPagelink from './src/pagelink' import IconPagerFirst from './src/pager-first' import IconPagerLast from './src/pager-last' @@ -268,17 +326,32 @@ import IconPanelMini from './src/panel-mini' import IconPanelNormal from './src/panel-normal' import IconPauseCircle from './src/pause-circle' import IconPause from './src/pause' +import IconPaymentSlips from './src/payment-slips' +import IconPdfType from './src/pdf-type' +import IconPendingReview from './src/pending-review' +import IconPerformance from './src/performance' import IconPersonHistory from './src/person-history' +import IconPictureType from './src/picture-type' import IconPicture from './src/picture' import IconPieChart from './src/pie-chart' import IconPlusCircle from './src/plus-circle' import IconPlusSquare from './src/plus-square' import IconPlus from './src/plus' import IconPopup from './src/popup' +import IconPptType from './src/ppt-type' import IconPreChecked from './src/pre-checked' import IconPrintPreview from './src/print-preview' -import IconPushpin from './src/pushpin' +import IconProcessPlanRequirements from './src/process-plan-requirements' +import IconProcessing from './src/processing' +import IconPromptExclamation from './src/prompt-exclamation' +import IconPrompt from './src/prompt' +import IconPublicHome from './src/public-home' +import IconPublicNotice from './src/public-notice' +import IconPublish from './src/publish' +import IconPurchasePlannedOrder from './src/purchase-planned-order' import IconPushpinSolid from './src/pushpin-solid' +import IconPushpin from './src/pushpin' +import IconPutAway from './src/put-away' import IconRadio from './src/radio' import IconRadioselected from './src/radioselected' import IconReactjs from './src/reactjs' @@ -289,11 +362,8 @@ import IconRenew from './src/renew' import IconRepeat from './src/repeat' import IconReplace from './src/replace' import IconReplies from './src/replies' -import IconRightFrozen from './src/right-frozen' -import IconRightO from './src/right-o' -import IconRight from './src/right' -import IconRightward from './src/rightward' -import IconRowReverse from './src/row-reverse' +import IconReportSubmission from './src/report-submission' +import IconRequirementsPlanning from './src/requirements-planning' import IconRichTextAddColumnAfter from './src/rich-text-add-column-after' import IconRichTextAddColumnBefore from './src/rich-text-add-column-before' import IconRichTextAddRowAfter from './src/rich-text-add-row-after' @@ -310,78 +380,116 @@ import IconRichTextDeleteRow from './src/rich-text-delete-row' import IconRichTextDeleteTable from './src/rich-text-delete-table' import IconRichTextFontSize from './src/rich-text-font-size' import IconRichTextFormatClear from './src/rich-text-format-clear' -import IconRichTextH1 from './src/rich-text-h1' -import IconRichTextH2 from './src/rich-text-h2' -import IconRichTextH3 from './src/rich-text-h3' -import IconRichTextH4 from './src/rich-text-h4' -import IconRichTextH5 from './src/rich-text-h5' -import IconRichTextH6 from './src/rich-text-h6' +import IconRichTextH1 from './src/rich-text-h-1' +import IconRichTextH2 from './src/rich-text-h-2' +import IconRichTextH3 from './src/rich-text-h-3' +import IconRichTextH4 from './src/rich-text-h-4' +import IconRichTextH5 from './src/rich-text-h-5' +import IconRichTextH6 from './src/rich-text-h-6' import IconRichTextHeading from './src/rich-text-heading' import IconRichTextHighLight from './src/rich-text-high-light' -import IconRichTextItalic from './src/rich-text-italic' import IconRichTextImage from './src/rich-text-image' +import IconRichTextItalic from './src/rich-text-italic' import IconRichTextLineHeight from './src/rich-text-line-height' -import IconRichTextLink from './src/rich-text-link' import IconRichTextLinkUnlink from './src/rich-text-link-unlink' +import IconRichTextLink from './src/rich-text-link' import IconRichTextListOrdered from './src/rich-text-list-ordered' import IconRichTextListUnordered from './src/rich-text-list-unordered' -import IconRichTextMergeCells from './src/rich-text-merge-cells' import IconRichTextMergeCellsVertical from './src/rich-text-merge-cells-vertical' +import IconRichTextMergeCells from './src/rich-text-merge-cells' import IconRichTextNodeDelete from './src/rich-text-node-delete' import IconRichTextParagraph from './src/rich-text-paragraph' import IconRichTextQuoteText from './src/rich-text-quote-text' +import IconRichTextQuoteText1 from './src/rich-text-quote-text1' import IconRichTextRedo from './src/rich-text-redo' import IconRichTextSplitCellsHorizontal from './src/rich-text-split-cells-horizontal' import IconRichTextSplitCellsVertical from './src/rich-text-split-cells-vertical' -import IconRichTextStrikeThrough from './src/rich-text-strike-through' +import IconRichTextStrikethrough from './src/rich-text-strikethrough' import IconRichTextSubscript from './src/rich-text-subscript' import IconRichTextSuperscript from './src/rich-text-superscript' +import IconRichTextTable2 from './src/rich-text-table-2' +import IconRichTextTableDropIco from './src/rich-text-table-drop-ico' import IconRichTextTable from './src/rich-text-table' import IconRichTextTaskList from './src/rich-text-task-list' import IconRichTextUnderline from './src/rich-text-underline' import IconRichTextUndo from './src/rich-text-undo' +import IconRightFrozen from './src/right-frozen' +import IconRightO from './src/right-o' +import IconRight from './src/right' +import IconRightward from './src/rightward' +import IconRowReverse from './src/row-reverse' import IconSandwichCollapse from './src/sandwich-collapse' import IconSandwichExpand from './src/sandwich-expand' import IconSave from './src/save' +import IconScan from './src/scan' import IconScissor from './src/scissor' +import IconSearchResource from './src/search-resource' import IconSearch from './src/search' import IconSelect from './src/select' import IconSent from './src/sent' import IconSeparate from './src/separate' +import IconSettingData from './src/setting-data' import IconSetting from './src/setting' -import IconShare from './src/share' import IconShareArrow from './src/share-arrow' +import IconShare from './src/share' +import IconShipped from './src/shipped' import IconShoppingCard from './src/shopping-card' import IconShutdown from './src/shutdown' import IconSmileO from './src/smile-o' import IconSmile from './src/smile' import IconSoldOut from './src/sold-out' import IconSortDefault from './src/sort-default' +import IconSortO from './src/sort-o' +import IconSortTriangleAscending from './src/sort-triangle-ascending' +import IconSortTriangleDescending from './src/sort-triangle-descending' +import IconSortTriangle from './src/sort-triangle' import IconSort from './src/sort' +import IconSplitLeft from './src/split-left' +import IconSplitRight from './src/split-right' +import IconSplit from './src/split' import IconStarActive from './src/star-active' import IconStarDisable from './src/star-disable' import IconStarO from './src/star-o' import IconStartCircle from './src/start-circle' +import IconStartO from './src/start-o' import IconStart from './src/start' import IconStatistics from './src/statistics' import IconStepsError from './src/steps-error' import IconStop from './src/stop' import IconStreamSolid from './src/stream-solid' +import IconStretchCrosswise from './src/stretch-crosswise' +import IconStretchUpright from './src/stretch-upright' +import IconStretch from './src/stretch' +import IconSubscript from './src/subscript' +import IconSubstituteMaterial from './src/substitute-material' import IconSuccess from './src/success' import IconSuccessful from './src/successful' +import IconSurchargeSettled from './src/surcharge-settled' +import IconSurchargeToBeSettled from './src/surcharge-to-be-settled' +import IconSynchronize from './src/synchronize' +import IconTableMode from './src/table-mode' import IconTabletView from './src/tablet-view' import IconTaskCooperation from './src/task-cooperation' +import IconTeams from './src/teams' import IconTelephoneCircle from './src/telephone-circle' import IconTelephone from './src/telephone' import IconTextAlign from './src/text-align' import IconTextDecoration from './src/text-decoration' import IconTextTab from './src/text-tab' +import IconTextType from './src/text-type' import IconText from './src/text' import IconTime from './src/time' +import IconToBeUploaded from './src/to-be-uploaded' +import IconTotalNolume from './src/total-nolume' +import IconTotalNumber from './src/total-number' +import IconTotalWeight from './src/total-weight' import IconTotal from './src/total' +import IconTransform from './src/transform' import IconTriangleDown from './src/triangle-down' import IconTriangleUp from './src/triangle-up' +import IconTurnOn from './src/turn-on' import IconUndelete from './src/undelete' +import IconUnderReview from './src/under-review' import IconUnderline from './src/underline' import IconUndo from './src/undo' import IconUnfilter from './src/unfilter' @@ -390,1397 +498,676 @@ import IconUnknow from './src/unknow' import IconUnknown from './src/unknown' import IconUnlock from './src/unlock' import IconUnsent from './src/unsent' +import IconUnsubmitted from './src/unsubmitted' +import IconUpAndDownArrowInner from './src/up-and-down-arrow-inner' +import IconUpAndDownArrowOuter from './src/up-and-down-arrow-outer' import IconUpO from './src/up-o' +import IconUpWard from './src/up-ward' import IconUp from './src/up' import IconUpdate from './src/update' +import IconUpgrading from './src/upgrading' import IconUpload from './src/upload' import IconUser from './src/user' import IconVersiontree from './src/versiontree' +import IconVideoType from './src/video-type' +import IconViewFlowchart from './src/view-flowchart' import IconView from './src/view' import IconVuejs from './src/vuejs' +import IconWaitForDeliveryO from './src/wait-for-delivery-o' +import IconWaitForDelivery from './src/wait-for-delivery' +import IconWaitingForReceipt from './src/waiting-for-receipt' +import IconWaitingForSubmission from './src/waiting-for-submission' +import IconWaitingToPick from './src/waiting-to-pick' +import IconWarn from './src/warn' +import IconWarningO from './src/warning-o' import IconWarningTriangle from './src/warning-triangle' import IconWarning from './src/warning' +import IconWeaknet from './src/weaknet' import IconWebPlus from './src/web-plus' +import IconWordType from './src/word-type' +import IconWorkPackage from './src/work-package' +import IconWriteProductionPlan from './src/write-production-plan' import IconWriting from './src/writing' +import IconXml from './src/xml' import IconYes from './src/yes' +import IconZipType from './src/zip-type' import IconZoomIn from './src/zoom-in' import IconZoomOut from './src/zoom-out' -import IconMobileRadio from './src/mobile-radio' -import IconMobileRadioSelected from './src/mobile-radio-selected' -import IconMobileCheckbox from './src/mobile-checkbox' -import IconMobileCheckboxHalf from './src/mobile-checkbox-half' -import IconMobileCheckboxSelected from './src/mobile-checkbox-selected' -import IconMobileErrorWhite from './src/mobile-error-white' -import IconMobileSuccessWhite from './src/mobile-success-white' -import IconAudio from './src/audio' -import IconMic from './src/mic' -import IconExcelType from './src/excel-type' -import IconFileType from './src/file-type' -import IconOtherType from './src/other-type' -import IconPdfType from './src/pdf-type' -import IconPictureType from './src/picture-type' -import IconPptType from './src/ppt-type' -import IconTextType from './src/text-type' -import IconVideoType from './src/video-type' -import IconWordType from './src/word-type' -import IconZipType from './src/zip-type' -import IconSubScript from './src/sub-script' -// new design -import IconPrompt from './src/prompt' -import IconExpand from './src/expand' -import IconPutAway from './src/put-away' -import IconStretch from './src/stretch' -import IconStretchCrosswise from './src/stretch-crosswise' -import IconStretchUpright from './src/stretch-upright' -import IconAddCircle from './src/add-circle' -import IconUpWard from './src/up-ward' -import IconDownWard from './src/down-ward' -import IconLeftWardArrow from './src/left-ward-arrow' -import IconSortTriangle from './src/sort-triangle' -import IconSortTriangleAscending from './src/sort-triangle-ascending' -import IconSortTriangleDescending from './src/sort-triangle-descending' +// 双图标 +export { IconEditorEraser, IconEditorEraser as iconEditorEraser } -import IconFinish from './src/finish' -import IconWarn from './src/warn' -import IconAddPicture from './src/add-picture' +// 非双图标 +export { IconAcceptance, IconAcceptance as iconAcceptance } +export { IconActivation, IconActivation as iconActivation } +export { IconAddCircle, IconAddCircle as iconAddCircle } +export { IconAddPicture, IconAddPicture as iconAddPicture } +export { IconAdd, IconAdd as iconAdd } +export { IconAdministratorO, IconAdministratorO as iconAdministratorO } +export { IconAdministrator, IconAdministrator as iconAdministrator } +export { IconAgency, IconAgency as iconAgency } +export { IconAgendaView, IconAgendaView as iconAgendaView } +export { IconAlignBaseline, IconAlignBaseline as iconAlignBaseline } +export { IconAlignCenter, IconAlignCenter as iconAlignCenter } +export { IconAlignFlexCenter, IconAlignFlexCenter as iconAlignFlexCenter } +export { IconAlignFlexEnd, IconAlignFlexEnd as iconAlignFlexEnd } +export { IconAlignFlexStart, IconAlignFlexStart as iconAlignFlexStart } +export { IconAlignJustify, IconAlignJustify as iconAlignJustify } +export { IconAlignLeft, IconAlignLeft as iconAlignLeft } +export { IconAlignRight, IconAlignRight as iconAlignRight } +export { IconAlignStretch, IconAlignStretch as iconAlignStretch } +export { IconAngleLeft, IconAngleLeft as iconAngleLeft } +export { IconAngleRight, IconAngleRight as iconAngleRight } +export { IconAngularjs, IconAngularjs as iconAngularjs } +export { IconApp, IconApp as iconApp } +export { IconApplication, IconApplication as iconApplication } +export { IconAreaChart, IconAreaChart as iconAreaChart } +export { IconArrowBottom, IconArrowBottom as iconArrowBottom } +export { IconArrowDown, IconArrowDown as iconArrowDown } +export { IconArrowLeft, IconArrowLeft as iconArrowLeft } +export { IconArrowRight, IconArrowRight as iconArrowRight } +export { IconArrowUp, IconArrowUp as iconArrowUp } +export { IconAscending, IconAscending as iconAscending } +export { IconAssociation, IconAssociation as iconAssociation } +export { IconAttachment, IconAttachment as iconAttachment } +export { IconAudio, IconAudio as iconAudio } +export { IconAudit, IconAudit as iconAudit } +export { IconAutomaticAssessment, IconAutomaticAssessment as iconAutomaticAssessment } +export { IconAverageShippingPeriod, IconAverageShippingPeriod as iconAverageShippingPeriod } +export { IconBadgeHotCn, IconBadgeHotCn as iconBadgeHotCn } +export { IconBadgeHotEn, IconBadgeHotEn as iconBadgeHotEn } +export { IconBadgeNewCn, IconBadgeNewCn as iconBadgeNewCn } +export { IconBadgeNewEn, IconBadgeNewEn as iconBadgeNewEn } +export { IconBarChart, IconBarChart as iconBarChart } +export { IconBatchFill, IconBatchFill as iconBatchFill } +export { IconBefilter, IconBefilter as iconBefilter } +export { IconBoat, IconBoat as iconBoat } +export { IconBoxSolid, IconBoxSolid as iconBoxSolid } +export { IconBusy, IconBusy as iconBusy } +export { IconCalculator, IconCalculator as iconCalculator } +export { IconCalendar, IconCalendar as iconCalendar } +export { IconCardMode, IconCardMode as iconCardMode } +export { IconCheckOut, IconCheckOut as iconCheckOut } +export { IconCheck, IconCheck as iconCheck } +export { IconCheckedLinear, IconCheckedLinear as iconCheckedLinear } +export { IconCheckedSur, IconCheckedSur as iconCheckedSur } +export { IconCheckedTrue, IconCheckedTrue as iconCheckedTrue } +export { IconChevronDown, IconChevronDown as iconChevronDown } +export { IconChevronLeft, IconChevronLeft as iconChevronLeft } +export { IconChevronRight, IconChevronRight as iconChevronRight } +export { IconChevronUp, IconChevronUp as iconChevronUp } +export { IconClearFilter, IconClearFilter as iconClearFilter } +export { IconClockWork, IconClockWork as iconClockWork } +export { IconCloseCircle, IconCloseCircle as iconCloseCircle } +export { IconCloseSquare, IconCloseSquare as iconCloseSquare } +export { IconClose, IconClose as iconClose } +export { IconCloudDownload, IconCloudDownload as iconCloudDownload } +export { IconCloudUpload, IconCloudUpload as iconCloudUpload } +export { IconCode, IconCode as iconCode } +export { IconCoin, IconCoin as iconCoin } +export { IconColReverse, IconColReverse as iconColReverse } +export { IconCommission, IconCommission as iconCommission } +export { IconConfig, IconConfig as iconConfig } +export { IconConmentRefresh, IconConmentRefresh as iconConmentRefresh } +export { IconCopySolid, IconCopySolid as iconCopySolid } +export { IconCopy, IconCopy as iconCopy } +export { IconCourse, IconCourse as iconCourse } +export { IconCreating, IconCreating as iconCreating } +export { IconCrop, IconCrop as iconCrop } +export { IconCueLO, IconCueLO as iconCueLO } +export { IconCueL, IconCueL as iconCueL } +export { IconCustom, IconCustom as iconCustom } +export { IconCustomerService, IconCustomerService as iconCustomerService } +export { IconCustomsClearanceForm, IconCustomsClearanceForm as iconCustomsClearanceForm } +export { IconCustomsDeclaration, IconCustomsDeclaration as iconCustomsDeclaration } +export { IconDataSource, IconDataSource as iconDataSource } +export { IconDayView, IconDayView as iconDayView } +export { IconDefault, IconDefault as iconDefault } +export { IconDefinedFiltration, IconDefinedFiltration as iconDefinedFiltration } +export { IconDel, IconDel as iconDel } +export { IconDelegatedProcessing, IconDelegatedProcessing as iconDelegatedProcessing } +export { IconDeleteL, IconDeleteL as iconDeleteL } +export { IconDeletePage, IconDeletePage as iconDeletePage } +export { IconDelete, IconDelete as iconDelete } +export { IconDeleted, IconDeleted as iconDeleted } +export { IconDeltaDownO, IconDeltaDownO as iconDeltaDownO } +export { IconDeltaDown, IconDeltaDown as iconDeltaDown } +export { IconDeltaLeftO, IconDeltaLeftO as iconDeltaLeftO } +export { IconDeltaLeft, IconDeltaLeft as iconDeltaLeft } +export { IconDeltaRightO, IconDeltaRightO as iconDeltaRightO } +export { IconDeltaRight, IconDeltaRight as iconDeltaRight } +export { IconDeltaUpO, IconDeltaUpO as iconDeltaUpO } +export { IconDeltaUp, IconDeltaUp as iconDeltaUp } +export { IconDerive, IconDerive as iconDerive } +export { IconDescending, IconDescending as iconDescending } +export { IconDesktopView, IconDesktopView as iconDesktopView } +export { IconDialog, IconDialog as iconDialog } +export { IconDialog2, IconDialog2 as iconDialog2 } +export { IconDirectionCol, IconDirectionCol as iconDirectionCol } +export { IconDirectionRow, IconDirectionRow as iconDirectionRow } +export { IconDisallowance, IconDisallowance as iconDisallowance } +export { IconDiscountSup, IconDiscountSup as iconDiscountSup } +export { IconDocument, IconDocument as iconDocument } +export { IconDoneMini, IconDoneMini as iconDoneMini } +export { IconDone, IconDone as iconDone } +export { IconDotChart, IconDotChart as iconDotChart } +export { IconDotDownload, IconDotDownload as iconDotDownload } +export { IconDotIpv4, IconDotIpv4 as iconDotIpv4 } +export { IconDoubleLeft, IconDoubleLeft as iconDoubleLeft } +export { IconDoubleRight, IconDoubleRight as iconDoubleRight } +export { IconDownO, IconDownO as iconDownO } +export { IconDownWard, IconDownWard as iconDownWard } +export { IconDown, IconDown as iconDown } +export { IconDownloadCloud, IconDownloadCloud as iconDownloadCloud } +export { IconDownloadLink, IconDownloadLink as iconDownloadLink } +export { IconDownload, IconDownload as iconDownload } +export { IconDraft, IconDraft as iconDraft } +export { IconDrawFlowchart, IconDrawFlowchart as iconDrawFlowchart } +export { IconEarthLined, IconEarthLined as iconEarthLined } +export { IconEdit, IconEdit as iconEdit } +export { IconEditorAlignCenter, IconEditorAlignCenter as iconEditorAlignCenter } +export { IconEditorAlignLeft, IconEditorAlignLeft as iconEditorAlignLeft } +export { IconEditorAlignRight, IconEditorAlignRight as iconEditorAlignRight } +export { IconEditorBackground, IconEditorBackground as iconEditorBackground } +export { IconEditorBold, IconEditorBold as iconEditorBold } +export { IconEditorCode, IconEditorCode as iconEditorCode } +export { IconEditorDeleteline, IconEditorDeleteline as iconEditorDeleteline } +export { IconEditorItalic, IconEditorItalic as iconEditorItalic } +export { IconEditorLeftBorder, IconEditorLeftBorder as iconEditorLeftBorder } +export { IconEditorListDot, IconEditorListDot as iconEditorListDot } +export { IconEditorListNum, IconEditorListNum as iconEditorListNum } +export { IconEditorList, IconEditorList as iconEditorList } +export { IconEditorMenuLeft, IconEditorMenuLeft as iconEditorMenuLeft } +export { IconEditorMenuRight, IconEditorMenuRight as iconEditorMenuRight } +export { IconEditorQuote, IconEditorQuote as iconEditorQuote } +export { IconEditorRedo, IconEditorRedo as iconEditorRedo } +export { IconEditorRightBorder, IconEditorRightBorder as iconEditorRightBorder } +export { IconEditorSub, IconEditorSub as iconEditorSub } +export { IconEditorSubtitle, IconEditorSubtitle as iconEditorSubtitle } +export { IconEditorSuper, IconEditorSuper as iconEditorSuper } +export { IconEditorTab, IconEditorTab as iconEditorTab } +export { IconEditorTable, IconEditorTable as iconEditorTable } +export { IconEditorTextcolor, IconEditorTextcolor as iconEditorTextcolor } +export { IconEditorTitle, IconEditorTitle as iconEditorTitle } +export { IconEditorUnderline, IconEditorUnderline as iconEditorUnderline } +export { IconEditorUndo, IconEditorUndo as iconEditorUndo } +export { IconEditorVideo, IconEditorVideo as iconEditorVideo } +export { IconEditor, IconEditor as iconEditor } +export { IconEllipsis, IconEllipsis as iconEllipsis } +export { IconEmailAdd, IconEmailAdd as iconEmailAdd } +export { IconEmailCircle, IconEmailCircle as iconEmailCircle } +export { IconEnd, IconEnd as iconEnd } +export { IconEngineWorkflow, IconEngineWorkflow as iconEngineWorkflow } +export { IconError, IconError as iconError } +export { IconEspaceAuto, IconEspaceAuto as iconEspaceAuto } +export { IconEspace, IconEspace as iconEspace } +export { IconExcelType, IconExcelType as iconExcelType } +export { IconExcel, IconExcel as iconExcel } +export { IconExceptionMiniO, IconExceptionMiniO as iconExceptionMiniO } +export { IconExceptionO, IconExceptionO as iconExceptionO } +export { IconException, IconException as iconException } +export { IconExclamation, IconExclamation as iconExclamation } +export { IconExecutionPhase, IconExecutionPhase as iconExecutionPhase } +export { IconExpand, IconExpand as iconExpand } +export { IconExport, IconExport as iconExport } +export { IconExpressSearch, IconExpressSearch as iconExpressSearch } +export { IconEyeclose, IconEyeclose as iconEyeclose } +export { IconEyeopen, IconEyeopen as iconEyeopen } +export { IconFeedback, IconFeedback as iconFeedback } +export { IconFileCloudupload, IconFileCloudupload as iconFileCloudupload } +export { IconFileExcel, IconFileExcel as iconFileExcel } +export { IconFileType, IconFileType as iconFileType } +export { IconFile, IconFile as iconFile } +export { IconFilesCircle, IconFilesCircle as iconFilesCircle } +export { IconFiles, IconFiles as iconFiles } +export { IconFiletext, IconFiletext as iconFiletext } +export { IconFileuploadPro, IconFileuploadPro as iconFileuploadPro } +export { IconFileupload, IconFileupload as iconFileupload } +export { IconFilletExternalLink, IconFilletExternalLink as iconFilletExternalLink } +export { IconFilter, IconFilter as iconFilter } +export { IconFiltered, IconFiltered as iconFiltered } +export { IconFinishO, IconFinishO as iconFinishO } +export { IconFinish, IconFinish as iconFinish } +export { IconFlag, IconFlag as iconFlag } +export { IconFolderClosedSolid, IconFolderClosedSolid as iconFolderClosedSolid } +export { IconFolderClosed, IconFolderClosed as iconFolderClosed } +export { IconFolderOpenedSolid, IconFolderOpenedSolid as iconFolderOpenedSolid } +export { IconFolderOpened, IconFolderOpened as iconFolderOpened } +export { IconFolder, IconFolder as iconFolder } +export { IconFontColor, IconFontColor as iconFontColor } +export { IconFontFamily, IconFontFamily as iconFontFamily } +export { IconFontSize, IconFontSize as iconFontSize } +export { IconFontStyle, IconFontStyle as iconFontStyle } +export { IconFontWeight, IconFontWeight as iconFontWeight } +export { IconFreezeLeft, IconFreezeLeft as iconFreezeLeft } +export { IconFreezeRight, IconFreezeRight as iconFreezeRight } +export { IconFreeze, IconFreeze as iconFreeze } +export { IconFrownO, IconFrownO as iconFrownO } +export { IconFrown, IconFrown as iconFrown } +export { IconFullscreenLeft, IconFullscreenLeft as iconFullscreenLeft } +export { IconFullscreenRight, IconFullscreenRight as iconFullscreenRight } +export { IconFullscreen, IconFullscreen as iconFullscreen } +export { IconGenerating, IconGenerating as iconGenerating } +export { IconGoBack, IconGoBack as iconGoBack } +export { IconGrade, IconGrade as iconGrade } +export { IconGridNoData, IconGridNoData as iconGridNoData } +export { IconGroupTransfer, IconGroupTransfer as iconGroupTransfer } +export { IconGroup, IconGroup as iconGroup } +export { IconHalfchecked, IconHalfchecked as iconHalfchecked } +export { IconHalfselect, IconHalfselect as iconHalfselect } +export { IconHeartempty, IconHeartempty as iconHeartempty } +export { IconHelpCircle, IconHelpCircle as iconHelpCircle } +export { IconHelpQuery, IconHelpQuery as iconHelpQuery } +export { IconHelpSolid, IconHelpSolid as iconHelpSolid } +export { IconHelp, IconHelp as iconHelp } +export { IconHelpful, IconHelpful as iconHelpful } +export { IconHideLeft, IconHideLeft as iconHideLeft } +export { IconHideRight, IconHideRight as iconHideRight } +export { IconHideTopleft, IconHideTopleft as iconHideTopleft } +export { IconHistoryRecord, IconHistoryRecord as iconHistoryRecord } +export { IconImageAdd, IconImageAdd as iconImageAdd } +export { IconImageError, IconImageError as iconImageError } +export { IconImport, IconImport as iconImport } +export { IconInfoCircle, IconInfoCircle as iconInfoCircle } +export { IconInfoSolid, IconInfoSolid as iconInfoSolid } +export { IconInfo, IconInfo as iconInfo } +export { IconInformation, IconInformation as iconInformation } +export { IconItemPlanningProperties, IconItemPlanningProperties as iconItemPlanningProperties } +export { IconJs, IconJs as iconJs } +export { IconJusitfyCenter, IconJusitfyCenter as iconJusitfyCenter } +export { IconJusitfyFlexEnd, IconJusitfyFlexEnd as iconJusitfyFlexEnd } +export { IconJusitfySpaceAround, IconJusitfySpaceAround as iconJusitfySpaceAround } +export { IconJusitfySpaceBetween, IconJusitfySpaceBetween as iconJusitfySpaceBetween } +export { IconJustitfyFlexStart, IconJustitfyFlexStart as iconJustitfyFlexStart } +export { IconLanguage, IconLanguage as iconLanguage } +export { IconLeave, IconLeave as iconLeave } +export { IconLeftFrozen, IconLeftFrozen as iconLeftFrozen } +export { IconLeftO, IconLeftO as iconLeftO } +export { IconLeftWardArrow, IconLeftWardArrow as iconLeftWardArrow } +export { IconLeftWard, IconLeftWard as iconLeftWard } +export { IconLeft, IconLeft as iconLeft } +export { IconLightningLine, IconLightningLine as iconLightningLine } +export { IconLightning, IconLightning as iconLightning } +export { IconLineChart, IconLineChart as iconLineChart } +export { IconLineHeight, IconLineHeight as iconLineHeight } +export { IconLineThrought, IconLineThrought as iconLineThrought } +export { IconLink, IconLink as iconLink } +export { IconListMode, IconListMode as iconListMode } +export { IconLoadingShadow, IconLoadingShadow as iconLoadingShadow } +export { IconLoading, IconLoading as iconLoading } +export { IconLocalePanel, IconLocalePanel as iconLocalePanel } +export { IconLocationNumber, IconLocationNumber as iconLocationNumber } +export { IconLocation, IconLocation as iconLocation } +export { IconLock, IconLock as iconLock } +export { IconMailContent, IconMailContent as iconMailContent } +export { IconMail, IconMail as iconMail } +export { IconMainFreightSettled, IconMainFreightSettled as iconMainFreightSettled } +export { IconMainFreightToBeSettled, IconMainFreightToBeSettled as iconMainFreightToBeSettled } +export { IconMaintainInspectionRecords, IconMaintainInspectionRecords as iconMaintainInspectionRecords } +export { IconMale, IconMale as iconMale } +export { IconMarkOn, IconMarkOn as iconMarkOn } +export { IconMaterial, IconMaterial as iconMaterial } +export { IconMeh, IconMeh as iconMeh } +export { IconMessageCircle, IconMessageCircle as iconMessageCircle } +export { IconMic, IconMic as iconMic } +export { IconMilestone, IconMilestone as iconMilestone } +export { IconMinscreenLeft, IconMinscreenLeft as iconMinscreenLeft } +export { IconMinscreenRight, IconMinscreenRight as iconMinscreenRight } +export { IconMinscreen, IconMinscreen as iconMinscreen } +export { IconMinusCircle, IconMinusCircle as iconMinusCircle } +export { IconMinusSquare, IconMinusSquare as iconMinusSquare } +export { IconMinus, IconMinus as iconMinus } +export { IconMobileCheckboxHalf, IconMobileCheckboxHalf as iconMobileCheckboxHalf } +export { IconMobileCheckboxSelected, IconMobileCheckboxSelected as iconMobileCheckboxSelected } +export { IconMobileCheckbox, IconMobileCheckbox as iconMobileCheckbox } +export { IconMobileErrorWhite, IconMobileErrorWhite as iconMobileErrorWhite } +export { IconMobileRadioSelected, IconMobileRadioSelected as iconMobileRadioSelected } +export { IconMobileRadio, IconMobileRadio as iconMobileRadio } +export { IconMobileSuccessWhite, IconMobileSuccessWhite as iconMobileSuccessWhite } +export { IconMobileView, IconMobileView as iconMobileView } +export { IconMobile, IconMobile as iconMobile } +export { IconMonthView, IconMonthView as iconMonthView } +export { IconMore, IconMore as iconMore } +export { IconMsg, IconMsg as iconMsg } +export { IconNew, IconNew as iconNew } +export { IconNoData, IconNoData as iconNoData } +export { IconNoNews, IconNoNews as iconNoNews } +export { IconNoPerm, IconNoPerm as iconNoPerm } +export { IconNoPremission, IconNoPremission as iconNoPremission } +export { IconNoResult, IconNoResult as iconNoResult } +export { IconNodeOpen, IconNodeOpen as iconNodeOpen } +export { IconNode, IconNode as iconNode } +export { IconNodejs, IconNodejs as iconNodejs } +export { IconNone, IconNone as iconNone } +export { IconNotStartedMini, IconNotStartedMini as iconNotStartedMini } +export { IconNotStarted, IconNotStarted as iconNotStarted } +export { IconOfd, IconOfd as iconOfd } +export { IconOffLine, IconOffLine as iconOffLine } +export { IconOnGoingMini, IconOnGoingMini as iconOnGoingMini } +export { IconOnGoing, IconOnGoing as iconOnGoing } +export { IconOnLine, IconOnLine as iconOnLine } +export { IconOperation, IconOperation as iconOperation } +export { IconOperationfaildL, IconOperationfaildL as iconOperationfaildL } +export { IconOperationfaild, IconOperationfaild as iconOperationfaild } +export { IconOtherType, IconOtherType as iconOtherType } +export { IconOuterLink, IconOuterLink as iconOuterLink } +export { IconPageNoperm, IconPageNoperm as iconPageNoperm } +export { IconPageNothing, IconPageNothing as iconPageNothing } +export { IconPageServererror, IconPageServererror as iconPageServererror } +export { IconPageWeaknet, IconPageWeaknet as iconPageWeaknet } +export { IconPagelink, IconPagelink as iconPagelink } +export { IconPagerFirst, IconPagerFirst as iconPagerFirst } +export { IconPagerLast, IconPagerLast as iconPagerLast } +export { IconPagerNext, IconPagerNext as iconPagerNext } +export { IconPagerPrev, IconPagerPrev as iconPagerPrev } +export { IconPanelMax, IconPanelMax as iconPanelMax } +export { IconPanelMini, IconPanelMini as iconPanelMini } +export { IconPanelNormal, IconPanelNormal as iconPanelNormal } +export { IconPauseCircle, IconPauseCircle as iconPauseCircle } +export { IconPause, IconPause as iconPause } +export { IconPaymentSlips, IconPaymentSlips as iconPaymentSlips } +export { IconPdfType, IconPdfType as iconPdfType } +export { IconPendingReview, IconPendingReview as iconPendingReview } +export { IconPerformance, IconPerformance as iconPerformance } +export { IconPersonHistory, IconPersonHistory as iconPersonHistory } +export { IconPictureType, IconPictureType as iconPictureType } +export { IconPicture, IconPicture as iconPicture } +export { IconPieChart, IconPieChart as iconPieChart } +export { IconPlusCircle, IconPlusCircle as iconPlusCircle } +export { IconPlusSquare, IconPlusSquare as iconPlusSquare } +export { IconPlus, IconPlus as iconPlus } +export { IconPopup, IconPopup as iconPopup } +export { IconPptType, IconPptType as iconPptType } +export { IconPreChecked, IconPreChecked as iconPreChecked } +export { IconPrintPreview, IconPrintPreview as iconPrintPreview } +export { IconProcessPlanRequirements, IconProcessPlanRequirements as iconProcessPlanRequirements } +export { IconProcessing, IconProcessing as iconProcessing } +export { IconPromptExclamation, IconPromptExclamation as iconPromptExclamation } +export { IconPrompt, IconPrompt as iconPrompt } +export { IconPublicHome, IconPublicHome as iconPublicHome } +export { IconPublicNotice, IconPublicNotice as iconPublicNotice } +export { IconPublish, IconPublish as iconPublish } +export { IconPurchasePlannedOrder, IconPurchasePlannedOrder as iconPurchasePlannedOrder } +export { IconPushpinSolid, IconPushpinSolid as iconPushpinSolid } +export { IconPushpin, IconPushpin as iconPushpin } +export { IconPutAway, IconPutAway as iconPutAway } +export { IconRadio, IconRadio as iconRadio } +export { IconRadioselected, IconRadioselected as iconRadioselected } +export { IconReactjs, IconReactjs as iconReactjs } +export { IconRedo, IconRedo as iconRedo } +export { IconRefres, IconRefres as iconRefres } +export { IconRefresh, IconRefresh as iconRefresh } +export { IconRenew, IconRenew as iconRenew } +export { IconRepeat, IconRepeat as iconRepeat } +export { IconReplace, IconReplace as iconReplace } +export { IconReplies, IconReplies as iconReplies } +export { IconReportSubmission, IconReportSubmission as iconReportSubmission } +export { IconRequirementsPlanning, IconRequirementsPlanning as iconRequirementsPlanning } +export { IconRichTextAddColumnAfter, IconRichTextAddColumnAfter as iconRichTextAddColumnAfter } +export { IconRichTextAddColumnBefore, IconRichTextAddColumnBefore as iconRichTextAddColumnBefore } +export { IconRichTextAddRowAfter, IconRichTextAddRowAfter as iconRichTextAddRowAfter } +export { IconRichTextAddRowBefore, IconRichTextAddRowBefore as iconRichTextAddRowBefore } +export { IconRichTextAlignCenter, IconRichTextAlignCenter as iconRichTextAlignCenter } +export { IconRichTextAlignLeft, IconRichTextAlignLeft as iconRichTextAlignLeft } +export { IconRichTextAlignRight, IconRichTextAlignRight as iconRichTextAlignRight } +export { IconRichTextBold, IconRichTextBold as iconRichTextBold } +export { IconRichTextCodeBlock, IconRichTextCodeBlock as iconRichTextCodeBlock } +export { IconRichTextCodeView, IconRichTextCodeView as iconRichTextCodeView } +export { IconRichTextColor, IconRichTextColor as iconRichTextColor } +export { IconRichTextDeleteColumn, IconRichTextDeleteColumn as iconRichTextDeleteColumn } +export { IconRichTextDeleteRow, IconRichTextDeleteRow as iconRichTextDeleteRow } +export { IconRichTextDeleteTable, IconRichTextDeleteTable as iconRichTextDeleteTable } +export { IconRichTextFontSize, IconRichTextFontSize as iconRichTextFontSize } +export { IconRichTextFormatClear, IconRichTextFormatClear as iconRichTextFormatClear } +export { IconRichTextH1, IconRichTextH1 as iconRichTextH1 } +export { IconRichTextH2, IconRichTextH2 as iconRichTextH2 } +export { IconRichTextH3, IconRichTextH3 as iconRichTextH3 } +export { IconRichTextH4, IconRichTextH4 as iconRichTextH4 } +export { IconRichTextH5, IconRichTextH5 as iconRichTextH5 } +export { IconRichTextH6, IconRichTextH6 as iconRichTextH6 } +export { IconRichTextHeading, IconRichTextHeading as iconRichTextHeading } +export { IconRichTextHighLight, IconRichTextHighLight as iconRichTextHighLight } +export { IconRichTextImage, IconRichTextImage as iconRichTextImage } +export { IconRichTextItalic, IconRichTextItalic as iconRichTextItalic } +export { IconRichTextLineHeight, IconRichTextLineHeight as iconRichTextLineHeight } +export { IconRichTextLinkUnlink, IconRichTextLinkUnlink as iconRichTextLinkUnlink } +export { IconRichTextLink, IconRichTextLink as iconRichTextLink } +export { IconRichTextListOrdered, IconRichTextListOrdered as iconRichTextListOrdered } +export { IconRichTextListUnordered, IconRichTextListUnordered as iconRichTextListUnordered } +export { IconRichTextMergeCellsVertical, IconRichTextMergeCellsVertical as iconRichTextMergeCellsVertical } +export { IconRichTextMergeCells, IconRichTextMergeCells as iconRichTextMergeCells } +export { IconRichTextNodeDelete, IconRichTextNodeDelete as iconRichTextNodeDelete } +export { IconRichTextParagraph, IconRichTextParagraph as iconRichTextParagraph } +export { IconRichTextQuoteText, IconRichTextQuoteText as iconRichTextQuoteText } +export { IconRichTextQuoteText1, IconRichTextQuoteText1 as iconRichTextQuoteText1 } +export { IconRichTextRedo, IconRichTextRedo as iconRichTextRedo } +export { IconRichTextSplitCellsHorizontal, IconRichTextSplitCellsHorizontal as iconRichTextSplitCellsHorizontal } +export { IconRichTextSplitCellsVertical, IconRichTextSplitCellsVertical as iconRichTextSplitCellsVertical } +export { IconRichTextStrikethrough, IconRichTextStrikethrough as iconRichTextStrikethrough } +export { IconRichTextSubscript, IconRichTextSubscript as iconRichTextSubscript } +export { IconRichTextSuperscript, IconRichTextSuperscript as iconRichTextSuperscript } +export { IconRichTextTable2, IconRichTextTable2 as iconRichTextTable2 } +export { IconRichTextTableDropIco, IconRichTextTableDropIco as iconRichTextTableDropIco } +export { IconRichTextTable, IconRichTextTable as iconRichTextTable } +export { IconRichTextTaskList, IconRichTextTaskList as iconRichTextTaskList } +export { IconRichTextUnderline, IconRichTextUnderline as iconRichTextUnderline } +export { IconRichTextUndo, IconRichTextUndo as iconRichTextUndo } +export { IconRightFrozen, IconRightFrozen as iconRightFrozen } +export { IconRightO, IconRightO as iconRightO } +export { IconRight, IconRight as iconRight } +export { IconRightward, IconRightward as iconRightward } +export { IconRowReverse, IconRowReverse as iconRowReverse } +export { IconSandwichCollapse, IconSandwichCollapse as iconSandwichCollapse } +export { IconSandwichExpand, IconSandwichExpand as iconSandwichExpand } +export { IconSave, IconSave as iconSave } +export { IconScan, IconScan as iconScan } +export { IconScissor, IconScissor as iconScissor } +export { IconSearchResource, IconSearchResource as iconSearchResource } +export { IconSearch, IconSearch as iconSearch } +export { IconSelect, IconSelect as iconSelect } +export { IconSent, IconSent as iconSent } +export { IconSeparate, IconSeparate as iconSeparate } +export { IconSettingData, IconSettingData as iconSettingData } +export { IconSetting, IconSetting as iconSetting } +export { IconShareArrow, IconShareArrow as iconShareArrow } +export { IconShare, IconShare as iconShare } +export { IconShipped, IconShipped as iconShipped } +export { IconShoppingCard, IconShoppingCard as iconShoppingCard } +export { IconShutdown, IconShutdown as iconShutdown } +export { IconSmileO, IconSmileO as iconSmileO } +export { IconSmile, IconSmile as iconSmile } +export { IconSoldOut, IconSoldOut as iconSoldOut } +export { IconSortDefault, IconSortDefault as iconSortDefault } +export { IconSortO, IconSortO as iconSortO } +export { IconSortTriangleAscending, IconSortTriangleAscending as iconSortTriangleAscending } +export { IconSortTriangleDescending, IconSortTriangleDescending as iconSortTriangleDescending } +export { IconSortTriangle, IconSortTriangle as iconSortTriangle } +export { IconSort, IconSort as iconSort } +export { IconSplitLeft, IconSplitLeft as iconSplitLeft } +export { IconSplitRight, IconSplitRight as iconSplitRight } +export { IconSplit, IconSplit as iconSplit } +export { IconStarActive, IconStarActive as iconStarActive } +export { IconStarDisable, IconStarDisable as iconStarDisable } +export { IconStarO, IconStarO as iconStarO } +export { IconStartCircle, IconStartCircle as iconStartCircle } +export { IconStartO, IconStartO as iconStartO } +export { IconStart, IconStart as iconStart } +export { IconStatistics, IconStatistics as iconStatistics } +export { IconStepsError, IconStepsError as iconStepsError } +export { IconStop, IconStop as iconStop } +export { IconStreamSolid, IconStreamSolid as iconStreamSolid } +export { IconStretchCrosswise, IconStretchCrosswise as iconStretchCrosswise } +export { IconStretchUpright, IconStretchUpright as iconStretchUpright } +export { IconStretch, IconStretch as iconStretch } +export { IconSubscript, IconSubscript as iconSubscript } +export { IconSubstituteMaterial, IconSubstituteMaterial as iconSubstituteMaterial } +export { IconSuccess, IconSuccess as iconSuccess } +export { IconSuccessful, IconSuccessful as iconSuccessful } +export { IconSurchargeSettled, IconSurchargeSettled as iconSurchargeSettled } +export { IconSurchargeToBeSettled, IconSurchargeToBeSettled as iconSurchargeToBeSettled } +export { IconSynchronize, IconSynchronize as iconSynchronize } +export { IconTableMode, IconTableMode as iconTableMode } +export { IconTabletView, IconTabletView as iconTabletView } +export { IconTaskCooperation, IconTaskCooperation as iconTaskCooperation } +export { IconTeams, IconTeams as iconTeams } +export { IconTelephoneCircle, IconTelephoneCircle as iconTelephoneCircle } +export { IconTelephone, IconTelephone as iconTelephone } +export { IconTextAlign, IconTextAlign as iconTextAlign } +export { IconTextDecoration, IconTextDecoration as iconTextDecoration } +export { IconTextTab, IconTextTab as iconTextTab } +export { IconTextType, IconTextType as iconTextType } +export { IconText, IconText as iconText } +export { IconTime, IconTime as iconTime } +export { IconToBeUploaded, IconToBeUploaded as iconToBeUploaded } +export { IconTotalNolume, IconTotalNolume as iconTotalNolume } +export { IconTotalNumber, IconTotalNumber as iconTotalNumber } +export { IconTotalWeight, IconTotalWeight as iconTotalWeight } +export { IconTotal, IconTotal as iconTotal } +export { IconTransform, IconTransform as iconTransform } +export { IconTriangleDown, IconTriangleDown as iconTriangleDown } +export { IconTriangleUp, IconTriangleUp as iconTriangleUp } +export { IconTurnOn, IconTurnOn as iconTurnOn } +export { IconUndelete, IconUndelete as iconUndelete } +export { IconUnderReview, IconUnderReview as iconUnderReview } +export { IconUnderline, IconUnderline as iconUnderline } +export { IconUndo, IconUndo as iconUndo } +export { IconUnfilter, IconUnfilter as iconUnfilter } +export { IconUnfreeze, IconUnfreeze as iconUnfreeze } +export { IconUnknow, IconUnknow as iconUnknow } +export { IconUnknown, IconUnknown as iconUnknown } +export { IconUnlock, IconUnlock as iconUnlock } +export { IconUnsent, IconUnsent as iconUnsent } +export { IconUnsubmitted, IconUnsubmitted as iconUnsubmitted } +export { IconUpAndDownArrowInner, IconUpAndDownArrowInner as iconUpAndDownArrowInner } +export { IconUpAndDownArrowOuter, IconUpAndDownArrowOuter as iconUpAndDownArrowOuter } +export { IconUpO, IconUpO as iconUpO } +export { IconUpWard, IconUpWard as iconUpWard } +export { IconUp, IconUp as iconUp } +export { IconUpdate, IconUpdate as iconUpdate } +export { IconUpgrading, IconUpgrading as iconUpgrading } +export { IconUpload, IconUpload as iconUpload } +export { IconUser, IconUser as iconUser } +export { IconVersiontree, IconVersiontree as iconVersiontree } +export { IconVideoType, IconVideoType as iconVideoType } +export { IconViewFlowchart, IconViewFlowchart as iconViewFlowchart } +export { IconView, IconView as iconView } +export { IconVuejs, IconVuejs as iconVuejs } +export { IconWaitForDeliveryO, IconWaitForDeliveryO as iconWaitForDeliveryO } +export { IconWaitForDelivery, IconWaitForDelivery as iconWaitForDelivery } +export { IconWaitingForReceipt, IconWaitingForReceipt as iconWaitingForReceipt } +export { IconWaitingForSubmission, IconWaitingForSubmission as iconWaitingForSubmission } +export { IconWaitingToPick, IconWaitingToPick as iconWaitingToPick } +export { IconWarn, IconWarn as iconWarn } +export { IconWarningO, IconWarningO as iconWarningO } +export { IconWarningTriangle, IconWarningTriangle as iconWarningTriangle } +export { IconWarning, IconWarning as iconWarning } +export { IconWeaknet, IconWeaknet as iconWeaknet } +export { IconWebPlus, IconWebPlus as iconWebPlus } +export { IconWordType, IconWordType as iconWordType } +export { IconWorkPackage, IconWorkPackage as iconWorkPackage } +export { IconWriteProductionPlan, IconWriteProductionPlan as iconWriteProductionPlan } +export { IconWriting, IconWriting as iconWriting } +export { IconXml, IconXml as iconXml } +export { IconYes, IconYes as iconYes } +export { IconZipType, IconZipType as iconZipType } +export { IconZoomIn, IconZoomIn as iconZoomIn } +export { IconZoomOut, IconZoomOut as iconZoomOut } -// sync aui icons -import IconAdministratorO from './src/administrator-o' -import IconAgency from './src/agency' -import IconAudit from './src/audit' -import IconBatchFill from './src/batch-fill' -import IconCardMode from './src/card-mode' -import IconDone from './src/done' -import IconDoneMini from './src/done-mini' -import IconEarthLined from './src/earth-lined' -import IconEditorEraserFilled from './src/editor-eraser-filled' -import IconExceptionO from './src/exception-o' -import IconExceptionMiniO from './src/exception-mini-o' -import IconExecutionPhase from './src/execution-phase' -import IconFileuploadPro from './src/fileupload-pro' -import IconHistoryRecord from './src/history-record' -import IconImageAdd from './src/image-add' -import IconListMode from './src/list-mode' -import IconMaterial from './src/material' -import IconMilestone from './src/milestone' -import IconMinscreenRight from './src/minscreen-right' -import IconNoData from './src/no-data' -import IconGridNoData from './src/grid-no-data' -import IconNoNews from './src/no-news' -import IconNoPerm from './src/no-perm' -import IconNoResult from './src/no-result' -import IconNotStarted from './src/not-started' -import IconNotStartedMini from './src/not-started-mini' -import IconOnGoing from './src/on-going' -import IconOnGoingMini from './src/on-going-mini' -import IconPageNoperm from './src/page-noperm' -import IconPageNothing from './src/page-nothing' -import IconPageServererror from './src/page-servererror' -import IconPageWeaknet from './src/page-weaknet' -import IconPublicHome from './src/public-home' -import IconPublicNotice from './src/public-notice' -import IconPublish from './src/publish' -import IconScan from './src/scan' -import IconSearchResource from './src/search-resource' -import IconSettingData from './src/setting-data' -import IconSortO from './src/sort-o' -import IconSplit from './src/split' -import IconSplitLeft from './src/split-left' -import IconSplitRight from './src/split-right' -import IconTableMode from './src/table-mode' -import IconTransform from './src/transform' -import IconUpgrading from './src/upgrading' -import IconWeaknet from './src/weaknet' -import IconWorkPackage from './src/work-package' -import IconActivation from './src/activation' -import IconGenerating from './src/generating' -import IconProcessing from './src/processing' -import IconReportSubmission from './src/report-submission' -import IconStartO from './src/start-o' -import IconTeams from './src/teams' -import IconTurnOn from './src/turn-on' -import IconWarningO from './src/warning-o' -import IconAutomaticAssessment from './src/automatic-assessment' -import IconAverageShippingPeriod from './src/average-shipping-period' -import IconCustomsClearanceForm from './src/customs-clearance-form' -import IconCustomsDeclaration from './src/customs-declaration' -import IconDisallowance from './src/disallowance' -import IconDiscountSup from './src/discount-sup' -import IconDocument from './src/document' -import IconDrawFlowchart from './src/draw-flowchart' -import IconEngineWorkflow from './src/engine-workflow' -import IconFinishO from './src/finish-o' -import IconLocation from './src/location' -import IconLocationNumber from './src/location-number' -import IconMainFreightSettled from './src/main-freight-settled' -import IconMainFreightToBeSettled from './src/main-freight-to-be-settled' -import IconMaintainInspectionRecords from './src/maintain-inspection-records' -import IconItemPlanningProperties from './src/item-planning-properties' -import IconMsg from './src/msg' -import IconOfd from './src/ofd' -import IconPaymentSlips from './src/payment-slips' -import IconPendingReview from './src/pending-review' -import IconPerformance from './src/performance' -import IconProcessPlanRequirements from './src/process-plan-requirements' -import IconPurchasePlannedOrder from './src/purchase-planned-order' -import IconRequirementsPlanning from './src/requirements-planning' -import IconShipped from './src/shipped' -import IconSubstituteMaterial from './src/substitute-material' -import IconSurchargeSettled from './src/surcharge-settled' -import IconSurchargeToBeSettled from './src/surcharge-to-be-settled' -import IconSynchronize from './src/synchronize' -import IconToBeUploaded from './src/to-be-uploaded' -import IconTotalNolume from './src/total-nolume' -import IconTotalNumber from './src/total-number' -import IconTotalWeight from './src/total-weight' -import IconUnderReview from './src/under-review' -import IconUnsubmitted from './src/unsubmitted' -import IconUpAndDownArrowInner from './src/up-and-down-arrow-inner' -import IconUpAndDownArrowOuter from './src/up-and-down-arrow-outer' -import IconViewFlowchart from './src/view-flowchart' -import IconWaitForDeliveryO from './src/wait-for-delivery-o' -import IconWaitForDelivery from './src/wait-for-delivery' -import IconWaitingForReceipt from './src/waiting-for-receipt' -import IconWaitingForSubmission from './src/waiting-for-submission' -import IconWaitingToPick from './src/waiting-to-pick' -import IconWriteProductioPlan from './src/write-production-plan' -import IconXml from './src/xml' -import IconLightning from './src/lightning' -import IconLightningLine from './src/lightning-line' +// 重命名导出 -export { - IconActivation, - IconActivation as iconActivation, +export default { + IconEditorEraser, IconAcceptance, - IconAcceptance as iconAcceptance, - IconGenerating, - IconGenerating as iconGenerating, - IconProcessing, - IconProcessing as iconProcessing, - IconReportSubmission, - IconReportSubmission as iconReportSubmission, - IconStartO, - IconStartO as iconStartO, - IconTeams, - IconTeams as iconTeams, - IconTurnOn, - IconTurnOn as iconTurnOn, - IconWarningO, - IconWarningO as iconWarningO, - IconAutomaticAssessment, - IconAutomaticAssessment as iconAutomaticAssessment, - IconAverageShippingPeriod, - IconAverageShippingPeriod as iconAverageShippingPeriod, - IconCustomsClearanceForm, - IconCustomsClearanceForm as iconCustomsClearanceForm, - IconCustomsDeclaration, - IconCustomsDeclaration as iconCustomsDeclaration, - IconDisallowance, - IconDisallowance as iconDisallowance, - IconDiscountSup, - IconDiscountSup as iconDiscountSup, - IconDocument, - IconDocument as iconDocument, - IconDrawFlowchart, - IconDrawFlowchart as iconDrawFlowchart, - IconEngineWorkflow, - IconEngineWorkflow as iconEngineWorkflow, - IconFinishO, - IconFinishO as iconFinishO, - IconLocation, - IconLocation as iconLocation, - IconLocationNumber, - IconLocationNumber as iconLocationNumber, - IconMainFreightSettled, - IconMainFreightSettled as iconMainFreightSettled, - IconMainFreightToBeSettled, - IconMainFreightToBeSettled as iconMainFreightToBeSettled, - IconMaintainInspectionRecords, - IconMaintainInspectionRecords as iconMaintainInspectionRecords, - IconItemPlanningProperties, - IconItemPlanningProperties as iconItemPlanningProperties, - IconMsg, - IconMsg as iconMsg, - IconOfd, - IconOfd as iconOfd, - IconPaymentSlips, - IconPaymentSlips as iconPaymentSlips, - IconPendingReview, - IconPendingReview as iconPendingReview, - IconPerformance, - IconPerformance as iconPerformance, - IconProcessPlanRequirements, - IconProcessPlanRequirements as iconProcessPlanRequirements, - IconPurchasePlannedOrder, - IconPurchasePlannedOrder as iconPurchasePlannedOrder, - IconRequirementsPlanning, - IconRequirementsPlanning as iconRequirementsPlanning, - IconShipped, - IconShipped as iconShipped, - IconSubstituteMaterial, - IconSubstituteMaterial as iconSubstituteMaterial, - IconSurchargeSettled, - IconSurchargeSettled as iconSurchargeSettled, - IconSurchargeToBeSettled, - IconSurchargeToBeSettled as iconSurchargeToBeSettled, - IconSynchronize, - IconSynchronize as iconSynchronize, - IconToBeUploaded, - IconToBeUploaded as iconToBeUploaded, - IconTotalNolume, - IconTotalNolume as iconTotalNolume, - IconTotalNumber, - IconTotalNumber as iconTotalNumber, - IconTotalWeight, - IconTotalWeight as iconTotalWeight, - IconUnderReview, - IconUnderReview as iconUnderReview, - IconUnsubmitted, - IconUnsubmitted as iconUnsubmitted, - IconUpAndDownArrowInner, - IconUpAndDownArrowInner as iconUpAndDownArrowInner, - IconUpAndDownArrowOuter, - IconUpAndDownArrowOuter as iconUpAndDownArrowOuter, - IconViewFlowchart, - IconViewFlowchart as iconViewFlowchart, - IconWaitForDeliveryO, - IconWaitForDeliveryO as iconWaitForDeliveryO, - IconWaitForDelivery, - IconWaitForDelivery as iconWaitForDelivery, - IconWaitingForReceipt, - IconWaitingForReceipt as iconWaitingForReceipt, - IconWaitingForSubmission, - IconWaitingForSubmission as iconWaitingForSubmission, - IconWaitingToPick, - IconWaitingToPick as iconWaitingToPick, - IconWriteProductioPlan, - IconWriteProductioPlan as iconWriteProductioPlan, - IconXml, - IconXml as iconXml, - IconSubScript, - IconSubScript as iconSubScript, - IconSortTriangle, - IconScan, - IconScan as iconScan, - IconSortTriangle as iconSortTriangle, - IconSortTriangleAscending, - IconSortTriangleAscending as iconSortTriangleAscending, - IconSortTriangleDescending, - IconSortTriangleDescending as iconSortTriangleDescending, - IconPromptExclamation, - IconPromptExclamation as iconPromptExclamation, - IconPrompt, - IconPrompt as iconPrompt, - IconExpand, - IconExpand as iconExpand, - IconPutAway, - IconPutAway as iconPutAway, - IconStretch, - IconStretch as iconStretch, - IconStretchCrosswise, - IconStretchCrosswise as iconStretchCrosswise, - IconStretchUpright, - IconStretchUpright as iconStretchUpright, + IconActivation, IconAddCircle, - IconAddCircle as iconAddCircle, - IconAudio, - IconAudio as iconAudio, - IconMic, - IconMic as iconMic, - IconExcelType, - IconExcelType as iconExcelType, - IconFileType, - IconFileType as iconFileType, - IconOtherType, - IconOtherType as iconOtherType, - IconPdfType, - IconPdfType as iconPdfType, - IconPictureType, - IconPictureType as iconPictureType, - IconPptType, - IconPptType as iconPptType, - IconTextType, - IconTextType as iconTextType, - IconVideoType, - IconVideoType as iconVideoType, - IconWordType, - IconWordType as iconWordType, - IconZipType, - IconZipType as iconZipType, - IconMobileCheckbox, - IconMobileCheckbox as iconMobileCheckbox, - IconMobileCheckboxHalf, - IconMobileCheckboxHalf as iconMobileCheckboxHalf, - IconMobileCheckboxSelected, - IconMobileCheckboxSelected as iconMobileCheckboxSelected, - IconMobileRadio, - IconMobileRadio as iconMobileRadio, - IconMobileRadioSelected, - IconMobileRadioSelected as iconMobileRadioSelected, - IconMobileErrorWhite, - IconMobileErrorWhite as iconMobileErrorWhite, - IconMobileSuccessWhite, - IconMobileSuccessWhite as iconMobileSuccessWhite, + IconAddPicture, IconAdd, - IconAdd as iconAdd, + IconAdministratorO, IconAdministrator, - IconAdministrator as iconAdministrator, + IconAgency, IconAgendaView, - IconAgendaView as iconAgendaView, IconAlignBaseline, - IconAlignBaseline as iconAlignBaseline, IconAlignCenter, - IconAlignCenter as iconAlignCenter, IconAlignFlexCenter, - IconAlignFlexCenter as iconAlignFlexCenter, IconAlignFlexEnd, - IconAlignFlexEnd as iconAlignFlexEnd, IconAlignFlexStart, - IconAlignFlexStart as iconAlignFlexStart, IconAlignJustify, - IconAlignJustify as iconAlignJustify, IconAlignLeft, - IconAlignLeft as iconAlignLeft, IconAlignRight, - IconAlignRight as iconAlignRight, IconAlignStretch, - IconAlignStretch as iconAlignStretch, IconAngleLeft, - IconAngleLeft as iconAngleLeft, IconAngleRight, - IconAngleRight as iconAngleRight, IconAngularjs, - IconAngularjs as iconAngularjs, IconApp, - IconApp as iconApp, IconApplication, - IconApplication as iconApplication, IconAreaChart, - IconAreaChart as iconAreaChart, IconArrowBottom, - IconArrowBottom as iconArrowBottom, IconArrowDown, - IconArrowDown as iconArrowDown, IconArrowLeft, - IconArrowLeft as iconArrowLeft, IconArrowRight, - IconArrowRight as iconArrowRight, IconArrowUp, - IconArrowUp as iconArrowUp, IconAscending, - IconAscending as iconAscending, IconAssociation, - IconAssociation as iconAssociation, IconAttachment, - IconAttachment as iconAttachment, + IconAudio, + IconAudit, + IconAutomaticAssessment, + IconAverageShippingPeriod, IconBadgeHotCn, - IconBadgeHotCn as iconBadgeHotCn, IconBadgeHotEn, - IconBadgeHotEn as iconBadgeHotEn, IconBadgeNewCn, - IconBadgeNewCn as iconBadgeNewCn, IconBadgeNewEn, - IconBadgeNewEn as iconBadgeNewEn, IconBarChart, - IconBarChart as iconBarChart, + IconBatchFill, IconBefilter, - IconBefilter as iconBefilter, IconBoat, - IconBoat as iconBoat, IconBoxSolid, - IconBoxSolid as iconBoxSolid, IconBusy, - IconBusy as iconBusy, IconCalculator, - IconCalculator as iconCalculator, IconCalendar, - IconCalendar as iconCalendar, + IconCardMode, IconCheckOut, - IconCheckOut as iconCheckOut, IconCheck, - IconCheck as iconCheck, IconCheckedLinear, - IconCheckedLinear as iconCheckedLinear, IconCheckedSur, - IconCheckedSur as iconCheckedSur, IconCheckedTrue, - IconCheckedTrue as iconCheckedTrue, IconChevronDown, - IconChevronDown as iconChevronDown, IconChevronLeft, - IconChevronLeft as iconChevronLeft, IconChevronRight, - IconChevronRight as iconChevronRight, IconChevronUp, - IconChevronUp as iconChevronUp, IconClearFilter, - IconClearFilter as iconClearFilter, IconClockWork, - IconClockWork as iconClockWork, IconCloseCircle, - IconCloseCircle as iconCloseCircle, IconCloseSquare, - IconCloseSquare as iconCloseSquare, IconClose, - IconClose as iconClose, IconCloudDownload, - IconCloudDownload as iconCloudDownload, IconCloudUpload, - IconCloudUpload as iconCloudUpload, IconCode, - IconCode as iconCode, IconCoin, - IconCoin as iconCoin, IconColReverse, - IconColReverse as iconColReverse, IconCommission, - IconCommission as iconCommission, IconConfig, - IconConfig as iconConfig, IconConmentRefresh, - IconConmentRefresh as iconConmentRefresh, IconCopySolid, - IconCopySolid as iconCopySolid, IconCopy, - IconCopy as iconCopy, - IconCrop, - IconCrop as iconCrop, IconCourse, - IconCourse as iconCourse, IconCreating, - IconCreating as iconCreating, - IconCueL, - IconCueL as iconCueL, + IconCrop, IconCueLO, - IconCueLO as iconCueLO, + IconCueL, IconCustom, - IconCustom as iconCustom, IconCustomerService, - IconCustomerService as iconCustomerService, + IconCustomsClearanceForm, + IconCustomsDeclaration, IconDataSource, - IconDataSource as iconDataSource, IconDayView, - IconDayView as iconDayView, IconDefault, - IconDefault as iconDefault, IconDefinedFiltration, - IconDefinedFiltration as iconDefinedFiltration, IconDel, - IconDel as iconDel, - IconDelete, - IconDelete as iconDelete, - IconDeleteL, - IconDeleteL as iconDeleteL, - IconDeletePage, - IconDeletePage as iconDeletePage, - IconDeleted, - IconDeleted as iconDeleted, - IconDeltaDownO, - IconDeltaDownO as iconDeltaDownO, - IconDeltaDown, - IconDeltaDown as iconDeltaDown, - IconDeltaLeftO, - IconDeltaLeftO as iconDeltaLeftO, - IconDeltaLeft, - IconDeltaLeft as iconDeltaLeft, - IconDeltaRightO, - IconDeltaRightO as iconDeltaRightO, - IconDeltaRight, - IconDeltaRight as iconDeltaRight, - IconDelegatedProcessing, - IconDelegatedProcessing as iconDelegatedProcessing, - IconDeltaUpO, - IconDeltaUpO as iconDeltaUpO, - IconDeltaUp, - IconDeltaUp as iconDeltaUp, - IconDerive, - IconDerive as iconDerive, - IconDescending, - IconDescending as iconDescending, - IconDesktopView, - IconDesktopView as iconDesktopView, - IconDialog, - IconDialog as iconDialog, - IconDialog2, - IconDialog2 as iconDialog2, - IconDirectionCol, - IconDirectionCol as iconDirectionCol, - IconDirectionRow, - IconDirectionRow as iconDirectionRow, - IconDotChart, - IconDotChart as iconDotChart, - IconDotDownload, - IconDotDownload as iconDotDownload, - IconDotIpv4, - IconDotIpv4 as iconDotIpv4, - IconDoubleLeft, - IconDoubleLeft as iconDoubleLeft, - IconDoubleRight, - IconDoubleRight as iconDoubleRight, - IconDownO, - IconDownO as iconDownO, - IconDown, - IconDown as iconDown, - IconDownWard, - IconDownWard as iconDownWard, - IconDownloadCloud, - IconDownloadCloud as iconDownloadCloud, - IconDownloadLink, - IconDownloadLink as iconDownloadLink, - IconDownload, - IconDownload as iconDownload, - IconDraft, - IconDraft as iconDraft, - IconEdit, - IconEdit as iconEdit, - IconEditor, - IconEditor as iconEditor, - IconEditorTab, - IconEditorTab as iconEditorTab, - IconEllipsis, - IconEllipsis as iconEllipsis, - IconEmailAdd, - IconEmailAdd as iconEmailAdd, - IconEmailCircle, - IconEmailCircle as iconEmailCircle, - IconEnd, - IconEnd as iconEnd, - IconError, - IconError as iconError, - IconEspaceAuto, - IconEspaceAuto as iconEspaceAuto, - IconEspace, - IconEspace as iconEspace, - IconExcel, - IconExcel as iconExcel, - IconException, - IconException as iconException, - IconExclamation, - IconExclamation as iconExclamation, - IconExport, - IconExport as iconExport, - IconExpressSearch, - IconExpressSearch as iconExpressSearch, - IconEyeclose, - IconEyeclose as iconEyeclose, - IconEyeopen, - IconEyeopen as iconEyeopen, - IconFeedback, - IconFeedback as iconFeedback, - IconEditorAlignCenter, - IconEditorAlignCenter as iconEditorAlignCenter, - IconEditorAlignLeft, - IconEditorAlignLeft as iconEditorAlignLeft, - IconEditorAlignRight, - IconEditorAlignRight as iconEditorAlignRight, - IconEditorBackground, - IconEditorBackground as iconEditorBackground, - IconEditorBold, - IconEditorBold as iconEditorBold, - IconEditorCode, - IconEditorCode as iconEditorCode, - IconEditorDeleteline, - IconEditorDeleteline as iconEditorDeleteline, - IconEditorEraser, - IconEditorEraser as iconEditorEraser, - IconEditorItalic, - IconEditorItalic as iconEditorItalic, - IconEditorLeftBorder, - IconEditorLeftBorder as iconEditorLeftBorder, - IconEditorList, - IconEditorList as iconEditorList, - IconEditorListDot, - IconEditorListDot as iconEditorListDot, - IconEditorListNum, - IconEditorListNum as iconEditorListNum, - IconEditorMenuLeft, - IconEditorMenuLeft as iconEditorMenuLeft, - IconEditorMenuRight, - IconEditorMenuRight as iconEditorMenuRight, - IconEditorQuote, - IconEditorQuote as iconEditorQuote, - IconEditorRedo, - IconEditorRedo as iconEditorRedo, - IconEditorRightBorder, - IconEditorRightBorder as iconEditorRightBorder, - IconEditorSub, - IconEditorSub as iconEditorSub, - IconEditorSubtitle, - IconEditorSubtitle as iconEditorSubtitle, - IconEditorSuper, - IconEditorSuper as iconEditorSuper, - IconEditorTable, - IconEditorTable as iconEditorTable, - IconEditorTextcolor, - IconEditorTextcolor as iconEditorTextcolor, - IconEditorTitle, - IconEditorTitle as iconEditorTitle, - IconEditorUnderline, - IconEditorUnderline as iconEditorUnderline, - IconEditorUndo, - IconEditorUndo as iconEditorUndo, - IconEditorVideo, - IconEditorVideo as iconEditorVideo, - IconFileCloudupload, - IconFileCloudupload as iconFileCloudupload, - IconFilletExternalLink, - IconFilletExternalLink as iconFilletExternalLink, - IconFileExcel, - IconFileExcel as iconFileExcel, - IconFile, - IconFile as iconFile, - IconFilesCircle, - IconFilesCircle as iconFilesCircle, - IconFiles, - IconFiles as iconFiles, - IconFiletext, - IconFiletext as iconFiletext, - IconFileupload, - IconFileupload as iconFileupload, - IconFilter, - IconFilter as iconFilter, - IconFiltered, - IconFiltered as iconFiltered, - IconFlag, - IconFlag as iconFlag, - IconFolder, - IconFolder as iconFolder, - IconFolderClosed, - IconFolderClosed as iconFolderClosed, - IconFolderClosedSolid, - IconFolderClosedSolid as iconFolderClosedSolid, - IconFolderOpened, - IconFolderOpened as iconFolderOpened, - IconFolderOpenedSolid, - IconFolderOpenedSolid as iconFolderOpenedSolid, - IconFontColor, - IconFontColor as iconFontColor, - IconFontFamily, - IconFontFamily as iconFontFamily, - IconFontSize, - IconFontSize as iconFontSize, - IconFontStyle, - IconFontStyle as iconFontStyle, - IconFontWeight, - IconFontWeight as iconFontWeight, - IconFreeze, - IconFreeze as iconFreeze, - IconFreezeLeft, - IconFreezeLeft as iconFreezeLeft, - IconFreezeRight, - IconFreezeRight as iconFreezeRight, - IconFrownO, - IconFrownO as iconFrownO, - IconFrown, - IconFrown as iconFrown, - IconFullscreen, - IconFullscreen as iconFullscreen, - IconFullscreenLeft, - IconFullscreenLeft as iconFullscreenLeft, - IconFullscreenRight, - IconFullscreenRight as iconFullscreenRight, - IconMinscreenLeft, - IconMinscreenLeft as iconMinscreenLeft, - IconGoBack, - IconGoBack as iconGoBack, - IconGrade, - IconGrade as iconGrade, - IconGroupTransfer, - IconGroupTransfer as iconGroupTransfer, - IconGroup, - IconGroup as iconGroup, - IconHalfchecked, - IconHalfchecked as iconHalfchecked, - IconHalfselect, - IconHalfselect as iconHalfselect, - IconHeartempty, - IconHeartempty as iconHeartempty, - IconHelpCircle, - IconHelpCircle as iconHelpCircle, - IconHelpQuery, - IconHelpQuery as iconHelpQuery, - IconHelpSolid, - IconHelpSolid as iconHelpSolid, - IconHelp, - IconHelp as iconHelp, - IconHelpful, - IconHelpful as iconHelpful, - IconHideLeft, - IconHideLeft as iconHideLeft, - IconHideRight, - IconHideRight as iconHideRight, - IconHideTopleft, - IconHideTopleft as iconHideTopleft, - IconImport, - IconImport as iconImport, - IconImageError, - IconImageError as iconImageError, - IconInfoCircle, - IconInfoCircle as iconInfoCircle, - IconInfoSolid, - IconInfoSolid as iconInfoSolid, - IconInfo, - IconInfo as iconInfo, - IconInformation, - IconInformation as iconInformation, - IconJs, - IconJs as iconJs, - IconJusitfyCenter, - IconJusitfyCenter as iconJusitfyCenter, - IconJusitfyFlexEnd, - IconJusitfyFlexEnd as iconJusitfyFlexEnd, - IconJusitfySpaceAround, - IconJusitfySpaceAround as iconJusitfySpaceAround, - IconJusitfySpaceBetween, - IconJusitfySpaceBetween as iconJusitfySpaceBetween, - IconJustitfyFlexStart, - IconJustitfyFlexStart as iconJustitfyFlexStart, - IconLanguage, - IconLanguage as iconLanguage, - IconLeave, - IconLeave as iconLeave, - IconLeftFrozen, - IconLeftFrozen as iconLeftFrozen, - IconLeftO, - IconLeftO as iconLeftO, - IconLeftWard, - IconLeftWard as iconLeftWard, - IconLeft, - IconLeft as iconLeft, - IconLineChart, - IconLineChart as iconLineChart, - IconLineHeight, - IconLineHeight as iconLineHeight, - IconLineThrought, - IconLineThrought as iconLineThrought, - IconLink, - IconLink as iconLink, - IconLoading, - IconLoading as iconLoading, - IconLoadingShadow, - IconLoadingShadow as iconLoadingShadow, - IconLocalePanel, - IconLocalePanel as iconLocalePanel, - IconLock, - IconLock as iconLock, - IconLeftWardArrow, - IconLeftWardArrow as iconLeftWardArrow, - IconMailContent, - IconMailContent as iconMailContent, - IconMail, - IconMail as iconMail, - IconMale, - IconMale as iconMale, - IconMarkOn, - IconMarkOn as iconMarkOn, - IconMeh, - IconMeh as iconMeh, - IconMessageCircle, - IconMessageCircle as iconMessageCircle, - IconMinscreen, - IconMinscreen as iconMinscreen, - IconMinusCircle, - IconMinusCircle as iconMinusCircle, - IconMinusSquare, - IconMinusSquare as iconMinusSquare, - IconMinus, - IconMinus as iconMinus, - IconMobileView, - IconMobileView as iconMobileView, - IconMobile, - IconMobile as iconMobile, - IconMonthView, - IconMonthView as iconMonthView, - IconMore, - IconMore as iconMore, - IconNew, - IconNew as iconNew, - IconNoPremission, - IconNoPremission as iconNoPremission, - IconNodeOpen, - IconNodeOpen as iconNodeOpen, - IconNode, - IconNode as iconNode, - IconNodejs, - IconNodejs as iconNodejs, - IconNone, - IconNone as iconNone, - IconOffLine, - IconOffLine as iconOffLine, - IconOnLine, - IconOnLine as iconOnLine, - IconOperationfaildL, - IconOperationfaildL as iconOperationfaildL, - IconOperation, - IconOperation as iconOperation, - IconOperationfaild, - IconOperationfaild as iconOperationfaild, - IconOuterLink, - IconOuterLink as iconOuterLink, - IconPagelink, - IconPagelink as iconPagelink, - IconPagerFirst, - IconPagerFirst as iconPagerFirst, - IconPagerLast, - IconPagerLast as iconPagerLast, - IconPagerNext, - IconPagerNext as iconPagerNext, - IconPagerPrev, - IconPagerPrev as iconPagerPrev, - IconPanelMax, - IconPanelMax as iconPanelMax, - IconPanelMini, - IconPanelMini as iconPanelMini, - IconPanelNormal, - IconPanelNormal as iconPanelNormal, - IconPauseCircle, - IconPauseCircle as iconPauseCircle, - IconPause, - IconPause as iconPause, - IconPersonHistory, - IconPersonHistory as iconPersonHistory, - IconPicture, - IconPicture as iconPicture, - IconPieChart, - IconPieChart as iconPieChart, - IconPlusCircle, - IconPlusCircle as iconPlusCircle, - IconPlusSquare, - IconPlusSquare as iconPlusSquare, - IconPlus, - IconPlus as iconPlus, - IconPopup, - IconPopup as iconPopup, - IconPreChecked, - IconPreChecked as iconPreChecked, - IconPrintPreview, - IconPrintPreview as iconPrintPreview, - IconPushpin, - IconPushpin as iconPushpin, - IconPushpinSolid, - IconPushpinSolid as iconPushpinSolid, - IconRadio, - IconRadio as iconRadio, - IconRadioselected, - IconRadioselected as iconRadioselected, - IconReactjs, - IconReactjs as iconReactjs, - IconRedo, - IconRedo as iconRedo, - IconRefres, - IconRefres as iconRefres, - IconRefresh, - IconRefresh as iconRefresh, - IconRenew, - IconRenew as iconRenew, - IconRepeat, - IconRepeat as iconRepeat, - IconReplace, - IconReplace as iconReplace, - IconReplies, - IconReplies as iconReplies, - IconRightFrozen, - IconRightFrozen as iconRightFrozen, - IconRightO, - IconRightO as iconRightO, - IconRight, - IconRight as iconRight, - IconRightward, - IconRightward as iconRightward, - IconRowReverse, - IconRowReverse as iconRowReverse, - IconRichTextAddColumnAfter, - IconRichTextAddColumnAfter as iconRichTextAddColumnAfter, - IconRichTextAddColumnBefore, - IconRichTextAddColumnBefore as iconRichTextAddColumnBefore, - IconRichTextAddRowAfter, - IconRichTextAddRowAfter as iconRichTextAddRowAfter, - IconRichTextAddRowBefore, - IconRichTextAddRowBefore as iconRichTextAddRowBefore, - IconRichTextAlignCenter, - IconRichTextAlignCenter as iconRichTextAlignCenter, - IconRichTextAlignLeft, - IconRichTextAlignLeft as iconRichTextAlignLeft, - IconRichTextAlignRight, - IconRichTextAlignRight as iconRichTextAlignRight, - IconRichTextBold, - IconRichTextBold as iconRichTextBold, - IconRichTextCodeBlock, - IconRichTextCodeBlock as iconRichTextCodeBlock, - IconRichTextCodeView, - IconRichTextCodeView as iconRichTextCodeView, - IconRichTextColor, - IconRichTextColor as iconRichTextColor, - IconRichTextDeleteColumn, - IconRichTextDeleteColumn as iconRichTextDeleteColumn, - IconRichTextDeleteRow, - IconRichTextDeleteRow as iconRichTextDeleteRow, - IconRichTextDeleteTable, - IconRichTextDeleteTable as iconRichTextDeleteTable, - IconRichTextFontSize, - IconRichTextFontSize as iconRichTextFontSize, - IconRichTextFormatClear, - IconRichTextFormatClear as iconRichTextFormatClear, - IconRichTextH1, - IconRichTextH1 as iconRichTextH1, - IconRichTextH2, - IconRichTextH2 as iconRichTextH2, - IconRichTextH3, - IconRichTextH3 as iconRichTextH3, - IconRichTextH4, - IconRichTextH4 as iconRichTextH4, - IconRichTextH5, - IconRichTextH5 as iconRichTextH5, - IconRichTextH6, - IconRichTextH6 as iconRichTextH6, - IconRichTextHeading, - IconRichTextHeading as iconRichTextHeading, - IconRichTextHighLight, - IconRichTextHighLight as iconRichTextHighLight, - IconRichTextItalic, - IconRichTextItalic as iconRichTextItalic, - IconRichTextImage, - IconRichTextImage as iconRichTextImage, - IconRichTextLineHeight, - IconRichTextLineHeight as iconRichTextLineHeight, - IconRichTextLink, - IconRichTextLink as iconRichTextLink, - IconRichTextLinkUnlink, - IconRichTextLinkUnlink as iconRichTextLinkUnlink, - IconRichTextListOrdered, - IconRichTextListOrdered as iconRichTextListOrdered, - IconRichTextListUnordered, - IconRichTextListUnordered as iconRichTextListUnordered, - IconRichTextMergeCells, - IconRichTextMergeCells as iconRichTextMergeCells, - IconRichTextMergeCellsVertical, - IconRichTextMergeCellsVertical as iconRichTextMergeCellsVertical, - IconRichTextNodeDelete, - IconRichTextNodeDelete as iconRichTextNodeDelete, - IconRichTextParagraph, - IconRichTextParagraph as iconRichTextParagraph, - IconRichTextQuoteText, - IconRichTextQuoteText as iconRichTextQuoteText, - IconRichTextRedo, - IconRichTextRedo as iconRichTextRedo, - IconRichTextSplitCellsHorizontal, - IconRichTextSplitCellsHorizontal as iconRichTextSplitCellsHorizontal, - IconRichTextSplitCellsVertical, - IconRichTextSplitCellsVertical as iconRichTextSplitCellsVertical, - IconRichTextStrikeThrough, - IconRichTextStrikeThrough as iconRichTextStrikeThrough, - IconRichTextSubscript, - IconRichTextSubscript as iconRichTextSubscript, - IconRichTextSuperscript, - IconRichTextSuperscript as iconRichTextSuperscript, - IconRichTextTable, - IconRichTextTable as iconRichTextTable, - IconRichTextTaskList, - IconRichTextTaskList as iconRichTextTaskList, - IconRichTextUnderline, - IconRichTextUnderline as iconRichTextUnderline, - IconRichTextUndo, - IconRichTextUndo as iconRichTextUndo, - IconSandwichCollapse, - IconSandwichCollapse as iconSandwichCollapse, - IconSandwichExpand, - IconSandwichExpand as iconSandwichExpand, - IconSave, - IconSave as iconSave, - IconScissor, - IconScissor as iconScissor, - IconSearch, - IconSearch as iconSearch, - IconSelect, - IconSelect as iconSelect, - IconSent, - IconSent as iconSent, - IconSeparate, - IconSeparate as iconSeparate, - IconSetting, - IconSetting as iconSetting, - IconShare, - IconShare as iconShare, - IconShareArrow, - IconShareArrow as iconShareArrow, - IconShoppingCard, - IconShoppingCard as iconShoppingCard, - IconShutdown, - IconShutdown as iconShutdown, - IconSmileO, - IconSmileO as iconSmileO, - IconSmile, - IconSmile as iconSmile, - IconSoldOut, - IconSoldOut as iconSoldOut, - IconSortDefault, - IconSortDefault as iconSortDefault, - IconSort, - IconSort as iconSort, - IconStarActive, - IconStarActive as iconStarActive, - IconStarDisable, - IconStarDisable as iconStarDisable, - IconStarO, - IconStarO as iconStarO, - IconStartCircle, - IconStartCircle as iconStartCircle, - IconStart, - IconStart as iconStart, - IconStatistics, - IconStatistics as iconStatistics, - IconStepsError, - IconStepsError as iconStepsError, - IconStop, - IconStop as iconStop, - IconStreamSolid, - IconStreamSolid as iconStreamSolid, - IconSuccess, - IconSuccess as iconSuccess, - IconSuccessful, - IconSuccessful as iconSuccessful, - IconTabletView, - IconTabletView as iconTabletView, - IconTaskCooperation, - IconTaskCooperation as iconTaskCooperation, - IconTelephoneCircle, - IconTelephoneCircle as iconTelephoneCircle, - IconTelephone, - IconTelephone as iconTelephone, - IconTextAlign, - IconTextAlign as iconTextAlign, - IconTextDecoration, - IconTextDecoration as iconTextDecoration, - IconTextTab, - IconTextTab as iconTextTab, - IconText, - IconText as iconText, - IconTime, - IconTime as iconTime, - IconTotal, - IconTotal as iconTotal, - IconTriangleDown, - IconTriangleDown as iconTriangleDown, - IconTriangleUp, - IconTriangleUp as iconTriangleUp, - IconUndelete, - IconUndelete as iconUndelete, - IconUnderline, - IconUnderline as iconUnderline, - IconUndo, - IconUndo as iconUndo, - IconUnfilter, - IconUnfilter as iconUnfilter, - IconUnfreeze, - IconUnfreeze as iconUnfreeze, - IconUnknow, - IconUnknow as iconUnknow, - IconUnknown, - IconUnknown as iconUnknown, - IconUnlock, - IconUnlock as iconUnlock, - IconUnsent, - IconUnsent as iconUnsent, - IconUpO, - IconUpO as iconUpO, - IconUp, - IconUp as iconUp, - IconUpdate, - IconUpdate as iconUpdate, - IconUpWard, - IconUpWard as iconUpWard, - IconUpload, - IconUpload as iconUpload, - IconUser, - IconUser as iconUser, - IconVersiontree, - IconVersiontree as iconVersiontree, - IconView, - IconView as iconView, - IconVuejs, - IconVuejs as iconVuejs, - IconWarningTriangle, - IconWarningTriangle as iconWarningTriangle, - IconWarning, - IconWarning as iconWarning, - IconWebPlus, - IconWebPlus as iconWebPlus, - IconWriting, - IconWriting as iconWriting, - IconYes, - IconYes as iconYes, - IconZoomIn, - IconZoomIn as iconZoomIn, - IconZoomOut, - IconZoomOut as iconZoomOut, - IconFinish, - IconFinish as iconFinish, - IconWarn, - IconWarn as iconWarn, - IconAddPicture, - IconAddPicture as iconAddPicture, - - // sync aui icons - IconAdministratorO, - IconAdministratorO as iconAdministratorO, - IconAgency, - IconAgency as iconAgency, - IconAudit, - IconAudit as iconAudit, - IconBatchFill, - IconBatchFill as iconBatchFill, - IconCardMode, - IconCardMode as iconCardMode, - IconDone, - IconDone as iconDone, - IconDoneMini, - IconDoneMini as iconDoneMini, - IconEarthLined, - IconEarthLined as iconEarthLined, - IconEditorEraserFilled, - IconEditorEraserFilled as iconEditorEraserFilled, - IconExceptionO, - IconExceptionO as iconExceptionO, - IconExceptionMiniO, - IconExceptionMiniO as iconExceptionMiniO, - IconExecutionPhase, - IconExecutionPhase as iconExecutionPhase, - IconFileuploadPro, - IconFileuploadPro as iconFileuploadPro, - IconHistoryRecord, - IconHistoryRecord as iconHistoryRecord, - IconImageAdd, - IconImageAdd as iconImageAdd, - IconListMode, - IconListMode as iconListMode, - IconLightning, - IconLightning as iconLightning, - IconLightningLine, - IconLightningLine as iconLightningLine, - IconMaterial, - IconMaterial as iconMaterial, - IconMilestone, - IconMilestone as iconMilestone, - IconMinscreenRight, - IconMinscreenRight as iconMinscreenRight, - IconNoData, - IconNoData as iconNoData, - IconGridNoData, - IconGridNoData as iconGridNoData, - IconNoNews, - IconNoNews as iconNoNews, - IconNoPerm, - IconNoPerm as iconNoPerm, - IconNoResult, - IconNoResult as iconNoResult, - IconNotStarted, - IconNotStarted as iconNotStarted, - IconNotStartedMini, - IconNotStartedMini as iconNotStartedMini, - IconOnGoing, - IconOnGoing as iconOnGoing, - IconOnGoingMini, - IconOnGoingMini as iconOnGoingMini, - IconPageNoperm, - IconPageNoperm as iconPageNoperm, - IconPageNothing, - IconPageNothing as iconPageNothing, - IconPageServererror, - IconPageServererror as iconPageServererror, - IconPageWeaknet, - IconPageWeaknet as iconPageWeaknet, - IconPublicHome, - IconPublicHome as iconPublicHome, - IconPublicNotice, - IconPublicNotice as iconPublicNotice, - IconPublish, - IconPublish as iconPublish, - IconSearchResource, - IconSearchResource as iconSearchResource, - IconSettingData, - IconSettingData as iconSettingData, - IconSortO, - IconSortO as iconSortO, - IconSplit, - IconSplit as iconSplit, - IconSplitLeft, - IconSplitLeft as iconSplitLeft, - IconSplitRight, - IconSplitRight as iconSplitRight, - IconTableMode, - IconTableMode as iconTableMode, - IconTransform, - IconTransform as iconTransform, - IconUpgrading, - IconUpgrading as iconUpgrading, - IconWeaknet, - IconWeaknet as iconWeaknet, - IconWorkPackage, - IconWorkPackage as iconWorkPackage -} - -export default { - IconActivation, - IconAcceptance, - IconGenerating, - IconProcessing, - IconReportSubmission, - IconStartO, - IconTeams, - IconTurnOn, - IconWarningO, - IconAutomaticAssessment, - IconAverageShippingPeriod, - IconCustomsClearanceForm, - IconCustomsDeclaration, - IconDisallowance, - IconDiscountSup, - IconDocument, - IconDrawFlowchart, - IconEngineWorkflow, - IconFinishO, - IconLocation, - IconLocationNumber, - IconMainFreightSettled, - IconMainFreightToBeSettled, - IconMaintainInspectionRecords, - IconItemPlanningProperties, - IconMsg, - IconOfd, - IconPaymentSlips, - IconPendingReview, - IconPerformance, - IconProcessPlanRequirements, - IconPurchasePlannedOrder, - IconRequirementsPlanning, - IconShipped, - IconSubstituteMaterial, - IconSurchargeSettled, - IconSurchargeToBeSettled, - IconSynchronize, - IconToBeUploaded, - IconTotalNolume, - IconTotalNumber, - IconTotalWeight, - IconUnderReview, - IconUnsubmitted, - IconUpAndDownArrowInner, - IconUpAndDownArrowOuter, - IconViewFlowchart, - IconWaitForDeliveryO, - IconWaitForDelivery, - IconWaitingForReceipt, - IconWaitingForSubmission, - IconWaitingToPick, - IconWriteProductioPlan, - IconXml, - IconScan, - IconSubScript, - IconSortTriangle, - IconSortTriangleAscending, - IconSortTriangleDescending, - IconPromptExclamation, - IconPrompt, - IconExpand, - IconPutAway, - IconStretch, - IconStretchCrosswise, - IconStretchUpright, - IconAddCircle, - IconAudio, - IconMic, - IconExcelType, - IconFileType, - IconOtherType, - IconPdfType, - IconPictureType, - IconPptType, - IconTextType, - IconVideoType, - IconWordType, - IconZipType, - IconMobileCheckbox, - IconMobileCheckboxHalf, - IconMobileCheckboxSelected, - IconMobileRadio, - IconMobileRadioSelected, - IconMobileErrorWhite, - IconMobileSuccessWhite, - IconAdd, - IconAdministrator, - IconAlignBaseline, - IconAlignCenter, - IconAlignFlexCenter, - IconAlignFlexEnd, - IconAlignFlexStart, - IconAlignJustify, - IconAlignLeft, - IconAlignRight, - IconAlignStretch, - IconAngleLeft, - IconAngleRight, - IconAngularjs, - IconApp, - IconApplication, - IconAreaChart, - IconArrowBottom, - IconArrowDown, - IconArrowLeft, - IconArrowRight, - IconArrowUp, - IconAscending, - IconAssociation, - IconAttachment, - IconBadgeHotCn, - IconBadgeHotEn, - IconBadgeNewCn, - IconBadgeNewEn, - IconBarChart, - IconBefilter, - IconBoat, - IconBoxSolid, - IconBusy, - IconCalculator, - IconCalendar, - IconCheckOut, - IconCheck, - IconCheckedLinear, - IconCheckedSur, - IconCheckedTrue, - IconChevronDown, - IconChevronLeft, - IconChevronRight, - IconChevronUp, - IconClearFilter, - IconClockWork, - IconCloseCircle, - IconCloseSquare, - IconClose, - IconCloudDownload, - IconCloudUpload, - IconCode, - IconCoin, - IconColReverse, - IconCommission, - IconConfig, - IconConmentRefresh, - IconCopySolid, - IconCopy, - IconCrop, - IconCourse, - IconCreating, - IconCueL, - IconCueLO, - IconCustom, - IconCustomerService, - IconDataSource, - IconDefault, - IconDefinedFiltration, - IconDel, - IconDelete, + IconDelegatedProcessing, IconDeleteL, IconDeletePage, + IconDelete, IconDeleted, IconDeltaDownO, IconDeltaDown, @@ -1788,7 +1175,6 @@ export default { IconDeltaLeft, IconDeltaRightO, IconDeltaRight, - IconDelegatedProcessing, IconDeltaUpO, IconDeltaUp, IconDerive, @@ -1798,36 +1184,26 @@ export default { IconDialog2, IconDirectionCol, IconDirectionRow, + IconDisallowance, + IconDiscountSup, + IconDocument, + IconDoneMini, + IconDone, IconDotChart, IconDotDownload, IconDotIpv4, IconDoubleLeft, IconDoubleRight, IconDownO, - IconDown, IconDownWard, + IconDown, IconDownloadCloud, IconDownloadLink, IconDownload, IconDraft, + IconDrawFlowchart, + IconEarthLined, IconEdit, - IconEditor, - IconEditorTab, - IconEllipsis, - IconEmailAdd, - IconEmailCircle, - IconEnd, - IconError, - IconEspaceAuto, - IconEspace, - IconExcel, - IconException, - IconExclamation, - IconExport, - IconExpressSearch, - IconEyeclose, - IconEyeopen, - IconFeedback, IconEditorAlignCenter, IconEditorAlignLeft, IconEditorAlignRight, @@ -1835,12 +1211,11 @@ export default { IconEditorBold, IconEditorCode, IconEditorDeleteline, - IconEditorEraser, IconEditorItalic, IconEditorLeftBorder, - IconEditorList, IconEditorListDot, IconEditorListNum, + IconEditorList, IconEditorMenuLeft, IconEditorMenuRight, IconEditorQuote, @@ -1849,44 +1224,72 @@ export default { IconEditorSub, IconEditorSubtitle, IconEditorSuper, + IconEditorTab, IconEditorTable, IconEditorTextcolor, IconEditorTitle, IconEditorUnderline, IconEditorUndo, IconEditorVideo, + IconEditor, + IconEllipsis, + IconEmailAdd, + IconEmailCircle, + IconEnd, + IconEngineWorkflow, + IconError, + IconEspaceAuto, + IconEspace, + IconExcelType, + IconExcel, + IconExceptionMiniO, + IconExceptionO, + IconException, + IconExclamation, + IconExecutionPhase, + IconExpand, + IconExport, + IconExpressSearch, + IconEyeclose, + IconEyeopen, + IconFeedback, IconFileCloudupload, - IconFilletExternalLink, IconFileExcel, + IconFileType, IconFile, IconFilesCircle, IconFiles, IconFiletext, + IconFileuploadPro, IconFileupload, + IconFilletExternalLink, IconFilter, IconFiltered, + IconFinishO, + IconFinish, IconFlag, - IconFolder, - IconFolderClosed, IconFolderClosedSolid, - IconFolderOpened, + IconFolderClosed, IconFolderOpenedSolid, + IconFolderOpened, + IconFolder, IconFontColor, IconFontFamily, IconFontSize, IconFontStyle, IconFontWeight, - IconFreeze, IconFreezeLeft, IconFreezeRight, + IconFreeze, IconFrownO, IconFrown, - IconFullscreen, IconFullscreenLeft, IconFullscreenRight, - IconMinscreenLeft, + IconFullscreen, + IconGenerating, IconGoBack, IconGrade, + IconGridNoData, IconGroupTransfer, IconGroup, IconHalfchecked, @@ -1900,12 +1303,15 @@ export default { IconHideLeft, IconHideRight, IconHideTopleft, - IconImport, + IconHistoryRecord, + IconImageAdd, IconImageError, + IconImport, IconInfoCircle, IconInfoSolid, IconInfo, IconInformation, + IconItemPlanningProperties, IconJs, IconJusitfyCenter, IconJusitfyFlexEnd, @@ -1916,42 +1322,78 @@ export default { IconLeave, IconLeftFrozen, IconLeftO, + IconLeftWardArrow, IconLeftWard, IconLeft, + IconLightningLine, + IconLightning, IconLineChart, IconLineHeight, IconLineThrought, IconLink, - IconLoading, + IconListMode, IconLoadingShadow, + IconLoading, IconLocalePanel, + IconLocationNumber, + IconLocation, IconLock, - IconLeftWardArrow, IconMailContent, IconMail, + IconMainFreightSettled, + IconMainFreightToBeSettled, + IconMaintainInspectionRecords, IconMale, IconMarkOn, + IconMaterial, IconMeh, IconMessageCircle, + IconMic, + IconMilestone, + IconMinscreenLeft, + IconMinscreenRight, IconMinscreen, IconMinusCircle, IconMinusSquare, IconMinus, + IconMobileCheckboxHalf, + IconMobileCheckboxSelected, + IconMobileCheckbox, + IconMobileErrorWhite, + IconMobileRadioSelected, + IconMobileRadio, + IconMobileSuccessWhite, IconMobileView, IconMobile, + IconMonthView, IconMore, + IconMsg, IconNew, + IconNoData, + IconNoNews, + IconNoPerm, IconNoPremission, + IconNoResult, IconNodeOpen, IconNode, IconNodejs, IconNone, + IconNotStartedMini, + IconNotStarted, + IconOfd, IconOffLine, + IconOnGoingMini, + IconOnGoing, IconOnLine, - IconOperationfaildL, IconOperation, + IconOperationfaildL, IconOperationfaild, + IconOtherType, IconOuterLink, + IconPageNoperm, + IconPageNothing, + IconPageServererror, + IconPageWeaknet, IconPagelink, IconPagerFirst, IconPagerLast, @@ -1962,17 +1404,32 @@ export default { IconPanelNormal, IconPauseCircle, IconPause, + IconPaymentSlips, + IconPdfType, + IconPendingReview, + IconPerformance, IconPersonHistory, + IconPictureType, IconPicture, IconPieChart, IconPlusCircle, IconPlusSquare, IconPlus, IconPopup, + IconPptType, IconPreChecked, IconPrintPreview, - IconPushpin, + IconProcessPlanRequirements, + IconProcessing, + IconPromptExclamation, + IconPrompt, + IconPublicHome, + IconPublicNotice, + IconPublish, + IconPurchasePlannedOrder, IconPushpinSolid, + IconPushpin, + IconPutAway, IconRadio, IconRadioselected, IconReactjs, @@ -1983,11 +1440,8 @@ export default { IconRepeat, IconReplace, IconReplies, - IconRightFrozen, - IconRightO, - IconRight, - IconRightward, - IconRowReverse, + IconReportSubmission, + IconRequirementsPlanning, IconRichTextAddColumnAfter, IconRichTextAddColumnBefore, IconRichTextAddRowAfter, @@ -2012,70 +1466,108 @@ export default { IconRichTextH6, IconRichTextHeading, IconRichTextHighLight, - IconRichTextItalic, IconRichTextImage, + IconRichTextItalic, IconRichTextLineHeight, - IconRichTextLink, IconRichTextLinkUnlink, + IconRichTextLink, IconRichTextListOrdered, IconRichTextListUnordered, - IconRichTextMergeCells, IconRichTextMergeCellsVertical, + IconRichTextMergeCells, IconRichTextNodeDelete, IconRichTextParagraph, IconRichTextQuoteText, + IconRichTextQuoteText1, IconRichTextRedo, IconRichTextSplitCellsHorizontal, IconRichTextSplitCellsVertical, - IconRichTextStrikeThrough, + IconRichTextStrikethrough, IconRichTextSubscript, IconRichTextSuperscript, + IconRichTextTable2, + IconRichTextTableDropIco, IconRichTextTable, IconRichTextTaskList, IconRichTextUnderline, IconRichTextUndo, + IconRightFrozen, + IconRightO, + IconRight, + IconRightward, + IconRowReverse, IconSandwichCollapse, IconSandwichExpand, IconSave, + IconScan, IconScissor, + IconSearchResource, IconSearch, IconSelect, IconSent, IconSeparate, + IconSettingData, IconSetting, - IconShare, IconShareArrow, + IconShare, + IconShipped, IconShoppingCard, IconShutdown, IconSmileO, IconSmile, IconSoldOut, IconSortDefault, + IconSortO, + IconSortTriangleAscending, + IconSortTriangleDescending, + IconSortTriangle, IconSort, + IconSplitLeft, + IconSplitRight, + IconSplit, IconStarActive, IconStarDisable, IconStarO, IconStartCircle, + IconStartO, IconStart, IconStatistics, IconStepsError, IconStop, IconStreamSolid, + IconStretchCrosswise, + IconStretchUpright, + IconStretch, + IconSubscript, + IconSubstituteMaterial, IconSuccess, IconSuccessful, + IconSurchargeSettled, + IconSurchargeToBeSettled, + IconSynchronize, + IconTableMode, IconTabletView, IconTaskCooperation, + IconTeams, IconTelephoneCircle, IconTelephone, IconTextAlign, IconTextDecoration, IconTextTab, + IconTextType, IconText, IconTime, + IconToBeUploaded, + IconTotalNolume, + IconTotalNumber, + IconTotalWeight, IconTotal, + IconTransform, IconTriangleDown, IconTriangleUp, + IconTurnOn, IconUndelete, + IconUnderReview, IconUnderline, IconUndo, IconUnfilter, @@ -2084,72 +1576,39 @@ export default { IconUnknown, IconUnlock, IconUnsent, + IconUnsubmitted, + IconUpAndDownArrowInner, + IconUpAndDownArrowOuter, IconUpO, + IconUpWard, IconUp, IconUpdate, - IconUpWard, + IconUpgrading, IconUpload, IconUser, IconVersiontree, + IconVideoType, + IconViewFlowchart, IconView, IconVuejs, + IconWaitForDeliveryO, + IconWaitForDelivery, + IconWaitingForReceipt, + IconWaitingForSubmission, + IconWaitingToPick, + IconWarn, + IconWarningO, IconWarningTriangle, IconWarning, + IconWeaknet, IconWebPlus, + IconWordType, + IconWorkPackage, + IconWriteProductionPlan, IconWriting, + IconXml, IconYes, + IconZipType, IconZoomIn, - IconZoomOut, - IconFinish, - IconWarn, - IconAddPicture, - // sync aui icons - IconAdministratorO, - IconAgency, - IconAudit, - IconBatchFill, - IconCardMode, - IconDone, - IconDoneMini, - IconEarthLined, - IconEditorEraserFilled, - IconExceptionO, - IconExceptionMiniO, - IconExecutionPhase, - IconFileuploadPro, - IconHistoryRecord, - IconImageAdd, - IconListMode, - IconLightning, - IconLightningLine, - IconMaterial, - IconMilestone, - IconMinscreenRight, - IconNoData, - IconGridNoData, - IconNoNews, - IconNoPerm, - IconNoResult, - IconNotStarted, - IconNotStartedMini, - IconOnGoing, - IconOnGoingMini, - IconPageNoperm, - IconPageNothing, - IconPageServererror, - IconPageWeaknet, - IconPublicHome, - IconPublicNotice, - IconPublish, - IconSearchResource, - IconSettingData, - IconSortO, - IconSplit, - IconSplitLeft, - IconSplitRight, - IconTableMode, - IconTransform, - IconUpgrading, - IconWeaknet, - IconWorkPackage + IconZoomOut } diff --git a/packages/vue-icon/src/acceptance.ts b/packages/vue-icon/src/acceptance.ts new file mode 100644 index 0000000000..c388d4e8a9 --- /dev/null +++ b/packages/vue-icon/src/acceptance.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Acceptance from '@opentiny/vue-theme/svgs/acceptance.svg' + +export default () => svg({ name: 'IconAcceptance', component: Acceptance, filledComponent: Acceptance })() diff --git a/packages/vue-icon/src/acceptance/index.ts b/packages/vue-icon/src/acceptance/index.ts deleted file mode 100644 index e868dabe43..0000000000 --- a/packages/vue-icon/src/acceptance/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Acceptance from '@opentiny/vue-theme/svgs/acceptance.svg' - -export default () => svg({ name: 'IconAcceptance', component: Acceptance })() diff --git a/packages/vue-icon/src/activation.ts b/packages/vue-icon/src/activation.ts new file mode 100644 index 0000000000..b2aba1bbd3 --- /dev/null +++ b/packages/vue-icon/src/activation.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Activation from '@opentiny/vue-theme/svgs/activation.svg' + +export default () => svg({ name: 'IconActivation', component: Activation, filledComponent: Activation })() diff --git a/packages/vue-icon/src/activation/index.ts b/packages/vue-icon/src/activation/index.ts deleted file mode 100644 index aa3f3f885a..0000000000 --- a/packages/vue-icon/src/activation/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Activation from '@opentiny/vue-theme/svgs/activation.svg' - -export default () => svg({ name: 'IconActivation', component: Activation })() diff --git a/packages/vue-icon/src/add-circle.ts b/packages/vue-icon/src/add-circle.ts new file mode 100644 index 0000000000..ed67f2a300 --- /dev/null +++ b/packages/vue-icon/src/add-circle.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import AddCircle from '@opentiny/vue-theme/svgs/add-circle.svg' + +export default () => svg({ name: 'IconAddCircle', component: AddCircle, filledComponent: AddCircle })() diff --git a/packages/vue-icon/src/add-circle/index.ts b/packages/vue-icon/src/add-circle/index.ts deleted file mode 100644 index db59c6b29d..0000000000 --- a/packages/vue-icon/src/add-circle/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import AddCircle from '@opentiny/vue-theme/svgs/add-circle.svg' - -export default () => svg({ name: 'IconAddCircle', component: AddCircle })() diff --git a/packages/vue-icon/src/add-picture.ts b/packages/vue-icon/src/add-picture.ts new file mode 100644 index 0000000000..692f364c13 --- /dev/null +++ b/packages/vue-icon/src/add-picture.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import AddPicture from '@opentiny/vue-theme/svgs/add-picture.svg' + +export default () => svg({ name: 'IconAddPicture', component: AddPicture, filledComponent: AddPicture })() diff --git a/packages/vue-icon/src/add-picture/index.ts b/packages/vue-icon/src/add-picture/index.ts deleted file mode 100644 index 5c5f7fae94..0000000000 --- a/packages/vue-icon/src/add-picture/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import AddPicture from '@opentiny/vue-theme/svgs/add-picture.svg' - -export default () => svg({ name: 'IconAddPicture', component: AddPicture })() diff --git a/packages/vue-icon/src/add.ts b/packages/vue-icon/src/add.ts new file mode 100644 index 0000000000..f213124da7 --- /dev/null +++ b/packages/vue-icon/src/add.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Add from '@opentiny/vue-theme/svgs/add.svg' + +export default () => svg({ name: 'IconAdd', component: Add, filledComponent: Add })() diff --git a/packages/vue-icon/src/add/index.ts b/packages/vue-icon/src/add/index.ts deleted file mode 100644 index 5a8ca37a9c..0000000000 --- a/packages/vue-icon/src/add/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Add from '@opentiny/vue-theme/svgs/add.svg' - -export default () => svg({ name: 'IconAdd', component: Add })() diff --git a/packages/vue-icon/src/administrator-o.ts b/packages/vue-icon/src/administrator-o.ts new file mode 100644 index 0000000000..b617f80102 --- /dev/null +++ b/packages/vue-icon/src/administrator-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import AdministratorO from '@opentiny/vue-theme/svgs/administrator-o.svg' + +export default () => svg({ name: 'IconAdministratorO', component: AdministratorO, filledComponent: AdministratorO })() diff --git a/packages/vue-icon/src/administrator-o/index.ts b/packages/vue-icon/src/administrator-o/index.ts deleted file mode 100644 index 4decfe0493..0000000000 --- a/packages/vue-icon/src/administrator-o/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import AdministratorO from '@opentiny/vue-theme/svgs/administrator-o.svg' - -export default () => svg({ name: 'IconAdministratorO', component: AdministratorO })() diff --git a/packages/vue-icon/src/administrator.ts b/packages/vue-icon/src/administrator.ts new file mode 100644 index 0000000000..990b5595ab --- /dev/null +++ b/packages/vue-icon/src/administrator.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Administrator from '@opentiny/vue-theme/svgs/administrator.svg' + +export default () => svg({ name: 'IconAdministrator', component: Administrator, filledComponent: Administrator })() diff --git a/packages/vue-icon/src/administrator/index.ts b/packages/vue-icon/src/administrator/index.ts deleted file mode 100644 index 7603003c93..0000000000 --- a/packages/vue-icon/src/administrator/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Administrator from '@opentiny/vue-theme/svgs/administrator.svg' - -export default () => svg({ name: 'IconAdministrator', component: Administrator })() diff --git a/packages/vue-icon/src/agency.ts b/packages/vue-icon/src/agency.ts new file mode 100644 index 0000000000..5ae8c10dc3 --- /dev/null +++ b/packages/vue-icon/src/agency.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Agency from '@opentiny/vue-theme/svgs/agency.svg' + +export default () => svg({ name: 'IconAgency', component: Agency, filledComponent: Agency })() diff --git a/packages/vue-icon/src/agency/index.ts b/packages/vue-icon/src/agency/index.ts deleted file mode 100644 index a08ec0c214..0000000000 --- a/packages/vue-icon/src/agency/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Agency from '@opentiny/vue-theme/svgs/agency.svg' - -export default () => svg({ name: 'IconAgency', component: Agency })() diff --git a/packages/vue-icon/src/agenda-view.ts b/packages/vue-icon/src/agenda-view.ts new file mode 100644 index 0000000000..0e49e23479 --- /dev/null +++ b/packages/vue-icon/src/agenda-view.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import AgendaView from '@opentiny/vue-theme/svgs/agenda-view.svg' + +export default () => svg({ name: 'IconAgendaView', component: AgendaView, filledComponent: AgendaView })() diff --git a/packages/vue-icon/src/agenda-view/index.ts b/packages/vue-icon/src/agenda-view/index.ts deleted file mode 100644 index 4e5e859537..0000000000 --- a/packages/vue-icon/src/agenda-view/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import AgendaView from '@opentiny/vue-theme/svgs/agenda-view.svg' - -export default () => svg({ name: 'IconAgendaView', component: AgendaView })() diff --git a/packages/vue-icon/src/align-baseline.ts b/packages/vue-icon/src/align-baseline.ts new file mode 100644 index 0000000000..823a613137 --- /dev/null +++ b/packages/vue-icon/src/align-baseline.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import AlignBaseline from '@opentiny/vue-theme/svgs/align-baseline.svg' + +export default () => svg({ name: 'IconAlignBaseline', component: AlignBaseline, filledComponent: AlignBaseline })() diff --git a/packages/vue-icon/src/align-baseline/index.ts b/packages/vue-icon/src/align-baseline/index.ts deleted file mode 100644 index a147907ec2..0000000000 --- a/packages/vue-icon/src/align-baseline/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import AlignBaseline from '@opentiny/vue-theme/svgs/align-baseline.svg' - -export default () => svg({ name: 'IconAlignBaseline', component: AlignBaseline })() diff --git a/packages/vue-icon/src/align-center.ts b/packages/vue-icon/src/align-center.ts new file mode 100644 index 0000000000..19cba9a2eb --- /dev/null +++ b/packages/vue-icon/src/align-center.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import AlignCenter from '@opentiny/vue-theme/svgs/align-center.svg' + +export default () => svg({ name: 'IconAlignCenter', component: AlignCenter, filledComponent: AlignCenter })() diff --git a/packages/vue-icon/src/align-center/index.ts b/packages/vue-icon/src/align-center/index.ts deleted file mode 100644 index d0c23fbcf5..0000000000 --- a/packages/vue-icon/src/align-center/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import AlignCenter from '@opentiny/vue-theme/svgs/align-center.svg' - -export default () => svg({ name: 'IconAlignCenter', component: AlignCenter })() diff --git a/packages/vue-icon/src/align-flex-center.ts b/packages/vue-icon/src/align-flex-center.ts new file mode 100644 index 0000000000..d1a435ea1d --- /dev/null +++ b/packages/vue-icon/src/align-flex-center.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import AlignFlexCenter from '@opentiny/vue-theme/svgs/align-flex-center.svg' + +export default () => + svg({ name: 'IconAlignFlexCenter', component: AlignFlexCenter, filledComponent: AlignFlexCenter })() diff --git a/packages/vue-icon/src/align-flex-center/index.ts b/packages/vue-icon/src/align-flex-center/index.ts deleted file mode 100644 index 2b3f016404..0000000000 --- a/packages/vue-icon/src/align-flex-center/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import AlignFlexCenter from '@opentiny/vue-theme/svgs/align-flex-center.svg' - -export default () => svg({ name: 'IconAlignFlexCenter', component: AlignFlexCenter })() diff --git a/packages/vue-icon/src/align-flex-end.ts b/packages/vue-icon/src/align-flex-end.ts new file mode 100644 index 0000000000..19c5c1d548 --- /dev/null +++ b/packages/vue-icon/src/align-flex-end.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import AlignFlexEnd from '@opentiny/vue-theme/svgs/align-flex-end.svg' + +export default () => svg({ name: 'IconAlignFlexEnd', component: AlignFlexEnd, filledComponent: AlignFlexEnd })() diff --git a/packages/vue-icon/src/align-flex-end/index.ts b/packages/vue-icon/src/align-flex-end/index.ts deleted file mode 100644 index 1170172018..0000000000 --- a/packages/vue-icon/src/align-flex-end/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import AlignFlexEnd from '@opentiny/vue-theme/svgs/align-flex-end.svg' - -export default () => svg({ name: 'IconAlignFlexEnd', component: AlignFlexEnd })() diff --git a/packages/vue-icon/src/align-flex-start.ts b/packages/vue-icon/src/align-flex-start.ts new file mode 100644 index 0000000000..307c1ad428 --- /dev/null +++ b/packages/vue-icon/src/align-flex-start.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import AlignFlexStart from '@opentiny/vue-theme/svgs/align-flex-start.svg' + +export default () => svg({ name: 'IconAlignFlexStart', component: AlignFlexStart, filledComponent: AlignFlexStart })() diff --git a/packages/vue-icon/src/align-flex-start/index.ts b/packages/vue-icon/src/align-flex-start/index.ts deleted file mode 100644 index 9a10bba41f..0000000000 --- a/packages/vue-icon/src/align-flex-start/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import AlignFlexStart from '@opentiny/vue-theme/svgs/align-flex-start.svg' - -export default () => svg({ name: 'IconAlignFlexStart', component: AlignFlexStart })() diff --git a/packages/vue-icon/src/align-justify.ts b/packages/vue-icon/src/align-justify.ts new file mode 100644 index 0000000000..7db914cc2c --- /dev/null +++ b/packages/vue-icon/src/align-justify.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import AlignJustify from '@opentiny/vue-theme/svgs/align-justify.svg' + +export default () => svg({ name: 'IconAlignJustify', component: AlignJustify, filledComponent: AlignJustify })() diff --git a/packages/vue-icon/src/align-justify/index.ts b/packages/vue-icon/src/align-justify/index.ts deleted file mode 100644 index 7b63370f2c..0000000000 --- a/packages/vue-icon/src/align-justify/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import AlignJustify from '@opentiny/vue-theme/svgs/align-justify.svg' - -export default () => svg({ name: 'IconAlignJustify', component: AlignJustify })() diff --git a/packages/vue-icon/src/align-left.ts b/packages/vue-icon/src/align-left.ts new file mode 100644 index 0000000000..f7b9fa4367 --- /dev/null +++ b/packages/vue-icon/src/align-left.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import AlignLeft from '@opentiny/vue-theme/svgs/align-left.svg' + +export default () => svg({ name: 'IconAlignLeft', component: AlignLeft, filledComponent: AlignLeft })() diff --git a/packages/vue-icon/src/align-left/index.ts b/packages/vue-icon/src/align-left/index.ts deleted file mode 100644 index e3ef488bac..0000000000 --- a/packages/vue-icon/src/align-left/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import AlignLeft from '@opentiny/vue-theme/svgs/align-left.svg' - -export default () => svg({ name: 'IconAlignLeft', component: AlignLeft })() diff --git a/packages/vue-icon/src/align-right.ts b/packages/vue-icon/src/align-right.ts new file mode 100644 index 0000000000..83e8d28f0b --- /dev/null +++ b/packages/vue-icon/src/align-right.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import AlignRight from '@opentiny/vue-theme/svgs/align-right.svg' + +export default () => svg({ name: 'IconAlignRight', component: AlignRight, filledComponent: AlignRight })() diff --git a/packages/vue-icon/src/align-right/index.ts b/packages/vue-icon/src/align-right/index.ts deleted file mode 100644 index a2d5e314a7..0000000000 --- a/packages/vue-icon/src/align-right/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import AlignRight from '@opentiny/vue-theme/svgs/align-right.svg' - -export default () => svg({ name: 'IconAlignRight', component: AlignRight })() diff --git a/packages/vue-icon/src/align-stretch.ts b/packages/vue-icon/src/align-stretch.ts new file mode 100644 index 0000000000..52f1fe825d --- /dev/null +++ b/packages/vue-icon/src/align-stretch.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import AlignStretch from '@opentiny/vue-theme/svgs/align-stretch.svg' + +export default () => svg({ name: 'IconAlignStretch', component: AlignStretch, filledComponent: AlignStretch })() diff --git a/packages/vue-icon/src/align-stretch/index.ts b/packages/vue-icon/src/align-stretch/index.ts deleted file mode 100644 index 466df256cc..0000000000 --- a/packages/vue-icon/src/align-stretch/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import AlignStretch from '@opentiny/vue-theme/svgs/align-stretch.svg' - -export default () => svg({ name: 'IconAlignStretch', component: AlignStretch })() diff --git a/packages/vue-icon/src/angle-left.ts b/packages/vue-icon/src/angle-left.ts new file mode 100644 index 0000000000..199d8eddc1 --- /dev/null +++ b/packages/vue-icon/src/angle-left.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import AngleLeft from '@opentiny/vue-theme/svgs/angle-left.svg' + +export default () => svg({ name: 'IconAngleLeft', component: AngleLeft, filledComponent: AngleLeft })() diff --git a/packages/vue-icon/src/angle-left/index.ts b/packages/vue-icon/src/angle-left/index.ts deleted file mode 100644 index e32eb3ed29..0000000000 --- a/packages/vue-icon/src/angle-left/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import AngleLeft from '@opentiny/vue-theme/svgs/angle-left.svg' - -export default () => svg({ name: 'IconAngleLeft', component: AngleLeft })() diff --git a/packages/vue-icon/src/angle-right.ts b/packages/vue-icon/src/angle-right.ts new file mode 100644 index 0000000000..029159f9c5 --- /dev/null +++ b/packages/vue-icon/src/angle-right.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import AngleRight from '@opentiny/vue-theme/svgs/angle-right.svg' + +export default () => svg({ name: 'IconAngleRight', component: AngleRight, filledComponent: AngleRight })() diff --git a/packages/vue-icon/src/angle-right/index.ts b/packages/vue-icon/src/angle-right/index.ts deleted file mode 100644 index 442c8ccb27..0000000000 --- a/packages/vue-icon/src/angle-right/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import AngleRight from '@opentiny/vue-theme/svgs/angle-right.svg' - -export default () => svg({ name: 'IconAngleRight', component: AngleRight })() diff --git a/packages/vue-icon/src/angularjs.ts b/packages/vue-icon/src/angularjs.ts new file mode 100644 index 0000000000..0fe267949f --- /dev/null +++ b/packages/vue-icon/src/angularjs.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Angularjs from '@opentiny/vue-theme/svgs/angularjs.svg' + +export default () => svg({ name: 'IconAngularjs', component: Angularjs, filledComponent: Angularjs })() diff --git a/packages/vue-icon/src/angularjs/index.ts b/packages/vue-icon/src/angularjs/index.ts deleted file mode 100644 index 44ab358b64..0000000000 --- a/packages/vue-icon/src/angularjs/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Angularjs from '@opentiny/vue-theme/svgs/angularjs.svg' - -export default () => svg({ name: 'IconAngularjs', component: Angularjs })() diff --git a/packages/vue-icon/src/app.ts b/packages/vue-icon/src/app.ts new file mode 100644 index 0000000000..1106b8a333 --- /dev/null +++ b/packages/vue-icon/src/app.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import App from '@opentiny/vue-theme/svgs/app.svg' + +export default () => svg({ name: 'IconApp', component: App, filledComponent: App })() diff --git a/packages/vue-icon/src/app/index.ts b/packages/vue-icon/src/app/index.ts deleted file mode 100644 index 956c1917ba..0000000000 --- a/packages/vue-icon/src/app/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import App from '@opentiny/vue-theme/svgs/app.svg' - -export default () => svg({ name: 'IconApp', component: App })() diff --git a/packages/vue-icon/src/application.ts b/packages/vue-icon/src/application.ts new file mode 100644 index 0000000000..22f1152450 --- /dev/null +++ b/packages/vue-icon/src/application.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Application from '@opentiny/vue-theme/svgs/application.svg' + +export default () => svg({ name: 'IconApplication', component: Application, filledComponent: Application })() diff --git a/packages/vue-icon/src/application/index.ts b/packages/vue-icon/src/application/index.ts deleted file mode 100644 index 60edfa9fa1..0000000000 --- a/packages/vue-icon/src/application/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Application from '@opentiny/vue-theme/svgs/application.svg' - -export default () => svg({ name: 'IconApplication', component: Application })() diff --git a/packages/vue-icon/src/area-chart.ts b/packages/vue-icon/src/area-chart.ts new file mode 100644 index 0000000000..3fe1fefd3c --- /dev/null +++ b/packages/vue-icon/src/area-chart.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import AreaChart from '@opentiny/vue-theme/svgs/area-chart.svg' + +export default () => svg({ name: 'IconAreaChart', component: AreaChart, filledComponent: AreaChart })() diff --git a/packages/vue-icon/src/area-chart/index.ts b/packages/vue-icon/src/area-chart/index.ts deleted file mode 100644 index ebea2ac108..0000000000 --- a/packages/vue-icon/src/area-chart/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import AreaChart from '@opentiny/vue-theme/svgs/area-chart.svg' - -export default () => svg({ name: 'IconAreaChart', component: AreaChart })() diff --git a/packages/vue-icon/src/arrow-bottom.ts b/packages/vue-icon/src/arrow-bottom.ts new file mode 100644 index 0000000000..d8a75ae948 --- /dev/null +++ b/packages/vue-icon/src/arrow-bottom.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ArrowBottom from '@opentiny/vue-theme/svgs/arrow-bottom.svg' + +export default () => svg({ name: 'IconArrowBottom', component: ArrowBottom, filledComponent: ArrowBottom })() diff --git a/packages/vue-icon/src/arrow-bottom/index.ts b/packages/vue-icon/src/arrow-bottom/index.ts deleted file mode 100644 index 8c26f6db97..0000000000 --- a/packages/vue-icon/src/arrow-bottom/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import ArrowBottom from '@opentiny/vue-theme/svgs/arrow-bottom.svg' - -export default () => svg({ name: 'IconArrowBottom', component: ArrowBottom })() diff --git a/packages/vue-icon/src/arrow-down.ts b/packages/vue-icon/src/arrow-down.ts new file mode 100644 index 0000000000..3ab62af848 --- /dev/null +++ b/packages/vue-icon/src/arrow-down.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ArrowDown from '@opentiny/vue-theme/svgs/arrow-down.svg' + +export default () => svg({ name: 'IconArrowDown', component: ArrowDown, filledComponent: ArrowDown })() diff --git a/packages/vue-icon/src/arrow-down/index.ts b/packages/vue-icon/src/arrow-down/index.ts deleted file mode 100644 index 485fb054e8..0000000000 --- a/packages/vue-icon/src/arrow-down/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ArrowDown from '@opentiny/vue-theme/svgs/arrow-down.svg' - -export default () => svg({ name: 'IconArrowDown', component: ArrowDown })() diff --git a/packages/vue-icon/src/arrow-left.ts b/packages/vue-icon/src/arrow-left.ts new file mode 100644 index 0000000000..ea13a61eaf --- /dev/null +++ b/packages/vue-icon/src/arrow-left.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ArrowLeft from '@opentiny/vue-theme/svgs/arrow-left.svg' + +export default () => svg({ name: 'IconArrowLeft', component: ArrowLeft, filledComponent: ArrowLeft })() diff --git a/packages/vue-icon/src/arrow-left/index.ts b/packages/vue-icon/src/arrow-left/index.ts deleted file mode 100644 index 2f95776d4b..0000000000 --- a/packages/vue-icon/src/arrow-left/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ArrowLeft from '@opentiny/vue-theme/svgs/arrow-left.svg' - -export default () => svg({ name: 'IconArrowLeft', component: ArrowLeft })() diff --git a/packages/vue-icon/src/arrow-right.ts b/packages/vue-icon/src/arrow-right.ts new file mode 100644 index 0000000000..4eb0934594 --- /dev/null +++ b/packages/vue-icon/src/arrow-right.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ArrowRight from '@opentiny/vue-theme/svgs/arrow-right.svg' + +export default () => svg({ name: 'IconArrowRight', component: ArrowRight, filledComponent: ArrowRight })() diff --git a/packages/vue-icon/src/arrow-right/index.ts b/packages/vue-icon/src/arrow-right/index.ts deleted file mode 100644 index 14fbdee945..0000000000 --- a/packages/vue-icon/src/arrow-right/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ArrowRight from '@opentiny/vue-theme/svgs/arrow-right.svg' - -export default () => svg({ name: 'IconArrowRight', component: ArrowRight })() diff --git a/packages/vue-icon/src/arrow-up.ts b/packages/vue-icon/src/arrow-up.ts new file mode 100644 index 0000000000..77bbd0f06c --- /dev/null +++ b/packages/vue-icon/src/arrow-up.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ArrowUp from '@opentiny/vue-theme/svgs/arrow-up.svg' + +export default () => svg({ name: 'IconArrowUp', component: ArrowUp, filledComponent: ArrowUp })() diff --git a/packages/vue-icon/src/arrow-up/index.ts b/packages/vue-icon/src/arrow-up/index.ts deleted file mode 100644 index 3282b8f8d3..0000000000 --- a/packages/vue-icon/src/arrow-up/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ArrowUp from '@opentiny/vue-theme/svgs/arrow-up.svg' - -export default () => svg({ name: 'IconArrowUp', component: ArrowUp })() diff --git a/packages/vue-icon/src/ascending.ts b/packages/vue-icon/src/ascending.ts new file mode 100644 index 0000000000..aaf39e1a39 --- /dev/null +++ b/packages/vue-icon/src/ascending.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Ascending from '@opentiny/vue-theme/svgs/ascending.svg' + +export default () => svg({ name: 'IconAscending', component: Ascending, filledComponent: Ascending })() diff --git a/packages/vue-icon/src/ascending/index.ts b/packages/vue-icon/src/ascending/index.ts deleted file mode 100644 index 425f1fe6c8..0000000000 --- a/packages/vue-icon/src/ascending/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Ascending from '@opentiny/vue-theme/svgs/ascending.svg' - -export default () => svg({ name: 'IconAscending', component: Ascending })() diff --git a/packages/vue-icon/src/association.ts b/packages/vue-icon/src/association.ts new file mode 100644 index 0000000000..4a36eefa67 --- /dev/null +++ b/packages/vue-icon/src/association.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Association from '@opentiny/vue-theme/svgs/association.svg' + +export default () => svg({ name: 'IconAssociation', component: Association, filledComponent: Association })() diff --git a/packages/vue-icon/src/association/index.ts b/packages/vue-icon/src/association/index.ts deleted file mode 100644 index f2c618bd30..0000000000 --- a/packages/vue-icon/src/association/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Association from '@opentiny/vue-theme/svgs/association.svg' - -export default () => svg({ name: 'IconAssociation', component: Association })() diff --git a/packages/vue-icon/src/attachment.ts b/packages/vue-icon/src/attachment.ts new file mode 100644 index 0000000000..1c6b8591b4 --- /dev/null +++ b/packages/vue-icon/src/attachment.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Attachment from '@opentiny/vue-theme/svgs/attachment.svg' + +export default () => svg({ name: 'IconAttachment', component: Attachment, filledComponent: Attachment })() diff --git a/packages/vue-icon/src/attachment/index.ts b/packages/vue-icon/src/attachment/index.ts deleted file mode 100644 index 6a9bf5dd6a..0000000000 --- a/packages/vue-icon/src/attachment/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Attachment from '@opentiny/vue-theme/svgs/attachment.svg' - -export default () => svg({ name: 'IconAttachment', component: Attachment })() diff --git a/packages/vue-icon/src/audio.ts b/packages/vue-icon/src/audio.ts new file mode 100644 index 0000000000..9b59e0b828 --- /dev/null +++ b/packages/vue-icon/src/audio.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Audio from '@opentiny/vue-theme/svgs/audio.svg' + +export default () => svg({ name: 'IconAudio', component: Audio, filledComponent: Audio })() diff --git a/packages/vue-icon/src/audio/index.ts b/packages/vue-icon/src/audio/index.ts deleted file mode 100644 index d2ddceca03..0000000000 --- a/packages/vue-icon/src/audio/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import Audio from '@opentiny/vue-theme/svgs/audio.svg' - -export default () => svg({ name: 'IconAudio', component: Audio })() diff --git a/packages/vue-icon/src/audit.ts b/packages/vue-icon/src/audit.ts new file mode 100644 index 0000000000..1d0c0bf11f --- /dev/null +++ b/packages/vue-icon/src/audit.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Audit from '@opentiny/vue-theme/svgs/audit.svg' + +export default () => svg({ name: 'IconAudit', component: Audit, filledComponent: Audit })() diff --git a/packages/vue-icon/src/audit/index.ts b/packages/vue-icon/src/audit/index.ts deleted file mode 100644 index a05c5df1b2..0000000000 --- a/packages/vue-icon/src/audit/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import Audit from '@opentiny/vue-theme/svgs/audit.svg' - -export default () => svg({ name: 'IconAudit', component: Audit })() diff --git a/packages/vue-icon/src/automatic-assessment.ts b/packages/vue-icon/src/automatic-assessment.ts new file mode 100644 index 0000000000..4c392cca70 --- /dev/null +++ b/packages/vue-icon/src/automatic-assessment.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import AutomaticAssessment from '@opentiny/vue-theme/svgs/automatic-assessment.svg' + +export default () => + svg({ name: 'IconAutomaticAssessment', component: AutomaticAssessment, filledComponent: AutomaticAssessment })() diff --git a/packages/vue-icon/src/automatic-assessment/index.ts b/packages/vue-icon/src/automatic-assessment/index.ts deleted file mode 100644 index 5c51f7e135..0000000000 --- a/packages/vue-icon/src/automatic-assessment/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import AutomaticAssessment from '@opentiny/vue-theme/svgs/automatic-assessment.svg' - -export default () => svg({ name: 'IconAutomaticAssessment', component: AutomaticAssessment })() diff --git a/packages/vue-icon/src/average-shipping-period.ts b/packages/vue-icon/src/average-shipping-period.ts new file mode 100644 index 0000000000..4711c73c7e --- /dev/null +++ b/packages/vue-icon/src/average-shipping-period.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import AverageShippingPeriod from '@opentiny/vue-theme/svgs/average-shipping-period.svg' + +export default () => + svg({ name: 'IconAverageShippingPeriod', component: AverageShippingPeriod, filledComponent: AverageShippingPeriod })() diff --git a/packages/vue-icon/src/average-shipping-period/index.ts b/packages/vue-icon/src/average-shipping-period/index.ts deleted file mode 100644 index f257a31101..0000000000 --- a/packages/vue-icon/src/average-shipping-period/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import AverageShippingPeriod from '@opentiny/vue-theme/svgs/average-shipping-period.svg' - -export default () => svg({ name: 'IconAverageShippingPeriod', component: AverageShippingPeriod })() diff --git a/packages/vue-icon/src/badge-hot-cn.ts b/packages/vue-icon/src/badge-hot-cn.ts new file mode 100644 index 0000000000..c6bba6322b --- /dev/null +++ b/packages/vue-icon/src/badge-hot-cn.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import BadgeHotCn from '@opentiny/vue-theme/svgs/badge-hot-cn.svg' + +export default () => svg({ name: 'IconBadgeHotCn', component: BadgeHotCn, filledComponent: BadgeHotCn })() diff --git a/packages/vue-icon/src/badge-hot-cn/index.ts b/packages/vue-icon/src/badge-hot-cn/index.ts deleted file mode 100644 index ca6f5512fa..0000000000 --- a/packages/vue-icon/src/badge-hot-cn/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import BadgeHotCn from '@opentiny/vue-theme/svgs/badge-hot-cn.svg' - -export default () => svg({ name: 'IconBadgeHotCn', component: BadgeHotCn })() diff --git a/packages/vue-icon/src/badge-hot-en.ts b/packages/vue-icon/src/badge-hot-en.ts new file mode 100644 index 0000000000..1b762cff86 --- /dev/null +++ b/packages/vue-icon/src/badge-hot-en.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import BadgeHotEn from '@opentiny/vue-theme/svgs/badge-hot-en.svg' + +export default () => svg({ name: 'IconBadgeHotEn', component: BadgeHotEn, filledComponent: BadgeHotEn })() diff --git a/packages/vue-icon/src/badge-hot-en/index.ts b/packages/vue-icon/src/badge-hot-en/index.ts deleted file mode 100644 index 9624e06c28..0000000000 --- a/packages/vue-icon/src/badge-hot-en/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import BadgeHotEn from '@opentiny/vue-theme/svgs/badge-hot-en.svg' - -export default () => svg({ name: 'IconBadgeHotEn', component: BadgeHotEn })() diff --git a/packages/vue-icon/src/badge-new-cn.ts b/packages/vue-icon/src/badge-new-cn.ts new file mode 100644 index 0000000000..67b375b2db --- /dev/null +++ b/packages/vue-icon/src/badge-new-cn.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import BadgeNewCn from '@opentiny/vue-theme/svgs/badge-new-cn.svg' + +export default () => svg({ name: 'IconBadgeNewCn', component: BadgeNewCn, filledComponent: BadgeNewCn })() diff --git a/packages/vue-icon/src/badge-new-cn/index.ts b/packages/vue-icon/src/badge-new-cn/index.ts deleted file mode 100644 index d74ca68563..0000000000 --- a/packages/vue-icon/src/badge-new-cn/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import BadgeNewCn from '@opentiny/vue-theme/svgs/badge-new-cn.svg' - -export default () => svg({ name: 'IconBadgeNewCn', component: BadgeNewCn })() diff --git a/packages/vue-icon/src/badge-new-en.ts b/packages/vue-icon/src/badge-new-en.ts new file mode 100644 index 0000000000..83d2c951e1 --- /dev/null +++ b/packages/vue-icon/src/badge-new-en.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import BadgeNewEn from '@opentiny/vue-theme/svgs/badge-new-en.svg' + +export default () => svg({ name: 'IconBadgeNewEn', component: BadgeNewEn, filledComponent: BadgeNewEn })() diff --git a/packages/vue-icon/src/badge-new-en/index.ts b/packages/vue-icon/src/badge-new-en/index.ts deleted file mode 100644 index c54743426a..0000000000 --- a/packages/vue-icon/src/badge-new-en/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import BadgeNewEn from '@opentiny/vue-theme/svgs/badge-new-en.svg' - -export default () => svg({ name: 'IconBadgeNewEn', component: BadgeNewEn })() diff --git a/packages/vue-icon/src/bar-chart.ts b/packages/vue-icon/src/bar-chart.ts new file mode 100644 index 0000000000..bbbd09ba6d --- /dev/null +++ b/packages/vue-icon/src/bar-chart.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import BarChart from '@opentiny/vue-theme/svgs/bar-chart.svg' + +export default () => svg({ name: 'IconBarChart', component: BarChart, filledComponent: BarChart })() diff --git a/packages/vue-icon/src/bar-chart/index.ts b/packages/vue-icon/src/bar-chart/index.ts deleted file mode 100644 index e26bc30db6..0000000000 --- a/packages/vue-icon/src/bar-chart/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import BarChart from '@opentiny/vue-theme/svgs/bar-chart.svg' - -export default () => svg({ name: 'IconBarChart', component: BarChart })() diff --git a/packages/vue-icon/src/batch-fill.ts b/packages/vue-icon/src/batch-fill.ts new file mode 100644 index 0000000000..88920d5bea --- /dev/null +++ b/packages/vue-icon/src/batch-fill.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import BatchFill from '@opentiny/vue-theme/svgs/batch-fill.svg' + +export default () => svg({ name: 'IconBatchFill', component: BatchFill, filledComponent: BatchFill })() diff --git a/packages/vue-icon/src/batch-fill/index.ts b/packages/vue-icon/src/batch-fill/index.ts deleted file mode 100644 index 2f48b4c9dc..0000000000 --- a/packages/vue-icon/src/batch-fill/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import BatchFill from '@opentiny/vue-theme/svgs/batch-fill.svg' - -export default () => svg({ name: 'IconBatchFill', component: BatchFill })() diff --git a/packages/vue-icon/src/befilter.ts b/packages/vue-icon/src/befilter.ts new file mode 100644 index 0000000000..1114c923f6 --- /dev/null +++ b/packages/vue-icon/src/befilter.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Befilter from '@opentiny/vue-theme/svgs/befilter.svg' + +export default () => svg({ name: 'IconBefilter', component: Befilter, filledComponent: Befilter })() diff --git a/packages/vue-icon/src/befilter/index.ts b/packages/vue-icon/src/befilter/index.ts deleted file mode 100644 index 0bc324e03a..0000000000 --- a/packages/vue-icon/src/befilter/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Befilter from '@opentiny/vue-theme/svgs/befilter.svg' - -export default () => svg({ name: 'IconBefilter', component: Befilter })() diff --git a/packages/vue-icon/src/boat.ts b/packages/vue-icon/src/boat.ts new file mode 100644 index 0000000000..c8efef1ff4 --- /dev/null +++ b/packages/vue-icon/src/boat.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Boat from '@opentiny/vue-theme/svgs/boat.svg' + +export default () => svg({ name: 'IconBoat', component: Boat, filledComponent: Boat })() diff --git a/packages/vue-icon/src/boat/index.ts b/packages/vue-icon/src/boat/index.ts deleted file mode 100644 index 67cb96f829..0000000000 --- a/packages/vue-icon/src/boat/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Boat from '@opentiny/vue-theme/svgs/boat.svg' - -export default () => svg({ name: 'IconBoat', component: Boat })() diff --git a/packages/vue-icon/src/box-solid.ts b/packages/vue-icon/src/box-solid.ts new file mode 100644 index 0000000000..c40a995f60 --- /dev/null +++ b/packages/vue-icon/src/box-solid.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import BoxSolid from '@opentiny/vue-theme/svgs/box-solid.svg' + +export default () => svg({ name: 'IconBoxSolid', component: BoxSolid, filledComponent: BoxSolid })() diff --git a/packages/vue-icon/src/box-solid/index.ts b/packages/vue-icon/src/box-solid/index.ts deleted file mode 100644 index 9eb7867112..0000000000 --- a/packages/vue-icon/src/box-solid/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import BoxSolid from '@opentiny/vue-theme/svgs/box-solid.svg' - -export default () => svg({ name: 'IconBoxSolid', component: BoxSolid })() diff --git a/packages/vue-icon/src/busy.ts b/packages/vue-icon/src/busy.ts new file mode 100644 index 0000000000..2232149601 --- /dev/null +++ b/packages/vue-icon/src/busy.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Busy from '@opentiny/vue-theme/svgs/busy.svg' + +export default () => svg({ name: 'IconBusy', component: Busy, filledComponent: Busy })() diff --git a/packages/vue-icon/src/busy/index.ts b/packages/vue-icon/src/busy/index.ts deleted file mode 100644 index 81ae9ad2ab..0000000000 --- a/packages/vue-icon/src/busy/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Busy from '@opentiny/vue-theme/svgs/busy.svg' - -export default () => svg({ name: 'IconBusy', component: Busy })() diff --git a/packages/vue-icon/src/calculator.ts b/packages/vue-icon/src/calculator.ts new file mode 100644 index 0000000000..67a4efcc73 --- /dev/null +++ b/packages/vue-icon/src/calculator.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Calculator from '@opentiny/vue-theme/svgs/calculator.svg' + +export default () => svg({ name: 'IconCalculator', component: Calculator, filledComponent: Calculator })() diff --git a/packages/vue-icon/src/calculator/index.ts b/packages/vue-icon/src/calculator/index.ts deleted file mode 100644 index 454dce2f21..0000000000 --- a/packages/vue-icon/src/calculator/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Calculator from '@opentiny/vue-theme/svgs/calculator.svg' - -export default () => svg({ name: 'IconCalculator', component: Calculator })() diff --git a/packages/vue-icon/src/calendar.ts b/packages/vue-icon/src/calendar.ts new file mode 100644 index 0000000000..ef4b0d570d --- /dev/null +++ b/packages/vue-icon/src/calendar.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Calendar from '@opentiny/vue-theme/svgs/calendar.svg' + +export default () => svg({ name: 'IconCalendar', component: Calendar, filledComponent: Calendar })() diff --git a/packages/vue-icon/src/calendar/index.ts b/packages/vue-icon/src/calendar/index.ts deleted file mode 100644 index f6b230d1d0..0000000000 --- a/packages/vue-icon/src/calendar/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Calendar from '@opentiny/vue-theme/svgs/calendar.svg' - -export default () => svg({ name: 'IconCalendar', component: Calendar })() diff --git a/packages/vue-icon/src/card-mode.ts b/packages/vue-icon/src/card-mode.ts new file mode 100644 index 0000000000..265ac66871 --- /dev/null +++ b/packages/vue-icon/src/card-mode.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import CardMode from '@opentiny/vue-theme/svgs/card-mode.svg' + +export default () => svg({ name: 'IconCardMode', component: CardMode, filledComponent: CardMode })() diff --git a/packages/vue-icon/src/card-mode/index.ts b/packages/vue-icon/src/card-mode/index.ts deleted file mode 100644 index 48a3a4712b..0000000000 --- a/packages/vue-icon/src/card-mode/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import CardMode from '@opentiny/vue-theme/svgs/card-mode.svg' - -export default () => svg({ name: 'IconCardMode', component: CardMode })() diff --git a/packages/vue-icon/src/check-out.ts b/packages/vue-icon/src/check-out.ts new file mode 100644 index 0000000000..58807b8f63 --- /dev/null +++ b/packages/vue-icon/src/check-out.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import CheckOut from '@opentiny/vue-theme/svgs/check-out.svg' + +export default () => svg({ name: 'IconCheckOut', component: CheckOut, filledComponent: CheckOut })() diff --git a/packages/vue-icon/src/check-out/index.ts b/packages/vue-icon/src/check-out/index.ts deleted file mode 100644 index a2a5688ccc..0000000000 --- a/packages/vue-icon/src/check-out/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import CheckOut from '@opentiny/vue-theme/svgs/check-out.svg' - -export default () => svg({ name: 'IconCheckOut', component: CheckOut })() diff --git a/packages/vue-icon/src/check.ts b/packages/vue-icon/src/check.ts new file mode 100644 index 0000000000..a2796f40e9 --- /dev/null +++ b/packages/vue-icon/src/check.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Check from '@opentiny/vue-theme/svgs/check.svg' + +export default () => svg({ name: 'IconCheck', component: Check, filledComponent: Check })() diff --git a/packages/vue-icon/src/check/index.ts b/packages/vue-icon/src/check/index.ts deleted file mode 100644 index 89ff6fa9ef..0000000000 --- a/packages/vue-icon/src/check/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Check from '@opentiny/vue-theme/svgs/check.svg' - -export default () => svg({ name: 'IconCheck', component: Check })() diff --git a/packages/vue-icon/src/checked-linear.ts b/packages/vue-icon/src/checked-linear.ts new file mode 100644 index 0000000000..1b8fdee90a --- /dev/null +++ b/packages/vue-icon/src/checked-linear.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import CheckedLinear from '@opentiny/vue-theme/svgs/checked-linear.svg' + +export default () => svg({ name: 'IconCheckedLinear', component: CheckedLinear, filledComponent: CheckedLinear })() diff --git a/packages/vue-icon/src/checked-linear/index.ts b/packages/vue-icon/src/checked-linear/index.ts deleted file mode 100644 index 5768061dd4..0000000000 --- a/packages/vue-icon/src/checked-linear/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import CheckedLinear from '@opentiny/vue-theme/svgs/checked-linear.svg' - -export default () => svg({ name: 'IconCheckedLinear', component: CheckedLinear })() diff --git a/packages/vue-icon/src/checked-sur.ts b/packages/vue-icon/src/checked-sur.ts new file mode 100644 index 0000000000..10bf7d14bb --- /dev/null +++ b/packages/vue-icon/src/checked-sur.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import CheckedSur from '@opentiny/vue-theme/svgs/checked-sur.svg' + +export default () => svg({ name: 'IconCheckedSur', component: CheckedSur, filledComponent: CheckedSur })() diff --git a/packages/vue-icon/src/checked-sur/index.ts b/packages/vue-icon/src/checked-sur/index.ts deleted file mode 100644 index 4891e30a21..0000000000 --- a/packages/vue-icon/src/checked-sur/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import CheckedSur from '@opentiny/vue-theme/svgs/checked-sur.svg' - -export default () => svg({ name: 'IconCheckedSur', component: CheckedSur })() diff --git a/packages/vue-icon/src/checked-true.ts b/packages/vue-icon/src/checked-true.ts new file mode 100644 index 0000000000..0d0bd208bd --- /dev/null +++ b/packages/vue-icon/src/checked-true.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import CheckedTrue from '@opentiny/vue-theme/svgs/checked-true.svg' + +export default () => svg({ name: 'IconCheckedTrue', component: CheckedTrue, filledComponent: CheckedTrue })() diff --git a/packages/vue-icon/src/checked-true/index.ts b/packages/vue-icon/src/checked-true/index.ts deleted file mode 100644 index bad07e0418..0000000000 --- a/packages/vue-icon/src/checked-true/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import CheckedTrue from '@opentiny/vue-theme/svgs/checked-true.svg' - -export default () => svg({ name: 'IconCheckedTrue', component: CheckedTrue })() diff --git a/packages/vue-icon/src/chevron-down.ts b/packages/vue-icon/src/chevron-down.ts new file mode 100644 index 0000000000..d482b01d17 --- /dev/null +++ b/packages/vue-icon/src/chevron-down.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ChevronDown from '@opentiny/vue-theme/svgs/chevron-down.svg' + +export default () => svg({ name: 'IconChevronDown', component: ChevronDown, filledComponent: ChevronDown })() diff --git a/packages/vue-icon/src/chevron-down/index.ts b/packages/vue-icon/src/chevron-down/index.ts deleted file mode 100644 index ae9fb0bb09..0000000000 --- a/packages/vue-icon/src/chevron-down/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ChevronDown from '@opentiny/vue-theme/svgs/chevron-down.svg' - -export default () => svg({ name: 'IconChevronDown', component: ChevronDown })() diff --git a/packages/vue-icon/src/chevron-left.ts b/packages/vue-icon/src/chevron-left.ts new file mode 100644 index 0000000000..b56757bb49 --- /dev/null +++ b/packages/vue-icon/src/chevron-left.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ChevronLeft from '@opentiny/vue-theme/svgs/chevron-left.svg' + +export default () => svg({ name: 'IconChevronLeft', component: ChevronLeft, filledComponent: ChevronLeft })() diff --git a/packages/vue-icon/src/chevron-left/index.ts b/packages/vue-icon/src/chevron-left/index.ts deleted file mode 100644 index 03d816232b..0000000000 --- a/packages/vue-icon/src/chevron-left/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ChevronLeft from '@opentiny/vue-theme/svgs/chevron-left.svg' - -export default () => svg({ name: 'IconChevronLeft', component: ChevronLeft })() diff --git a/packages/vue-icon/src/chevron-right.ts b/packages/vue-icon/src/chevron-right.ts new file mode 100644 index 0000000000..5ccc017df6 --- /dev/null +++ b/packages/vue-icon/src/chevron-right.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ChevronRight from '@opentiny/vue-theme/svgs/chevron-right.svg' + +export default () => svg({ name: 'IconChevronRight', component: ChevronRight, filledComponent: ChevronRight })() diff --git a/packages/vue-icon/src/chevron-right/index.ts b/packages/vue-icon/src/chevron-right/index.ts deleted file mode 100644 index 03ba52eace..0000000000 --- a/packages/vue-icon/src/chevron-right/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ChevronRight from '@opentiny/vue-theme/svgs/chevron-right.svg' - -export default () => svg({ name: 'IconChevronRight', component: ChevronRight })() diff --git a/packages/vue-icon/src/chevron-up.ts b/packages/vue-icon/src/chevron-up.ts new file mode 100644 index 0000000000..6908305f4a --- /dev/null +++ b/packages/vue-icon/src/chevron-up.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ChevronUp from '@opentiny/vue-theme/svgs/chevron-up.svg' + +export default () => svg({ name: 'IconChevronUp', component: ChevronUp, filledComponent: ChevronUp })() diff --git a/packages/vue-icon/src/chevron-up/index.ts b/packages/vue-icon/src/chevron-up/index.ts deleted file mode 100644 index 0ec9824a3f..0000000000 --- a/packages/vue-icon/src/chevron-up/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ChevronUp from '@opentiny/vue-theme/svgs/chevron-up.svg' - -export default () => svg({ name: 'IconChevronUp', component: ChevronUp })() diff --git a/packages/vue-icon/src/clear-filter.ts b/packages/vue-icon/src/clear-filter.ts new file mode 100644 index 0000000000..01bf22c689 --- /dev/null +++ b/packages/vue-icon/src/clear-filter.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ClearFilter from '@opentiny/vue-theme/svgs/clear-filter.svg' + +export default () => svg({ name: 'IconClearFilter', component: ClearFilter, filledComponent: ClearFilter })() diff --git a/packages/vue-icon/src/clear-filter/index.ts b/packages/vue-icon/src/clear-filter/index.ts deleted file mode 100644 index e3c6f517d7..0000000000 --- a/packages/vue-icon/src/clear-filter/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ClearFilter from '@opentiny/vue-theme/svgs/clear-filter.svg' - -export default () => svg({ name: 'IconClearFilter', component: ClearFilter })() diff --git a/packages/vue-icon/src/clock-work.ts b/packages/vue-icon/src/clock-work.ts new file mode 100644 index 0000000000..ac98976f50 --- /dev/null +++ b/packages/vue-icon/src/clock-work.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ClockWork from '@opentiny/vue-theme/svgs/clock-work.svg' + +export default () => svg({ name: 'IconClockWork', component: ClockWork, filledComponent: ClockWork })() diff --git a/packages/vue-icon/src/clock-work/index.ts b/packages/vue-icon/src/clock-work/index.ts deleted file mode 100644 index ab7e71519b..0000000000 --- a/packages/vue-icon/src/clock-work/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ClockWork from '@opentiny/vue-theme/svgs/clock-work.svg' - -export default () => svg({ name: 'IconClockWork', component: ClockWork })() diff --git a/packages/vue-icon/src/close-circle.ts b/packages/vue-icon/src/close-circle.ts new file mode 100644 index 0000000000..dc49b25d71 --- /dev/null +++ b/packages/vue-icon/src/close-circle.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import CloseCircle from '@opentiny/vue-theme/svgs/close-circle.svg' + +export default () => svg({ name: 'IconCloseCircle', component: CloseCircle, filledComponent: CloseCircle })() diff --git a/packages/vue-icon/src/close-circle/index.ts b/packages/vue-icon/src/close-circle/index.ts deleted file mode 100644 index a5022b04e7..0000000000 --- a/packages/vue-icon/src/close-circle/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import CloseCircle from '@opentiny/vue-theme/svgs/close-circle.svg' - -export default () => svg({ name: 'IconCloseCircle', component: CloseCircle })() diff --git a/packages/vue-icon/src/close-square.ts b/packages/vue-icon/src/close-square.ts new file mode 100644 index 0000000000..2b77020fed --- /dev/null +++ b/packages/vue-icon/src/close-square.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import CloseSquare from '@opentiny/vue-theme/svgs/close-square.svg' + +export default () => svg({ name: 'IconCloseSquare', component: CloseSquare, filledComponent: CloseSquare })() diff --git a/packages/vue-icon/src/close-square/index.ts b/packages/vue-icon/src/close-square/index.ts deleted file mode 100644 index edb1ae8aaa..0000000000 --- a/packages/vue-icon/src/close-square/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import CloseSquare from '@opentiny/vue-theme/svgs/close-square.svg' - -export default () => svg({ name: 'IconCloseSquare', component: CloseSquare })() diff --git a/packages/vue-icon/src/close.ts b/packages/vue-icon/src/close.ts new file mode 100644 index 0000000000..10a06f67b0 --- /dev/null +++ b/packages/vue-icon/src/close.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Close from '@opentiny/vue-theme/svgs/close.svg' + +export default () => svg({ name: 'IconClose', component: Close, filledComponent: Close })() diff --git a/packages/vue-icon/src/close/index.ts b/packages/vue-icon/src/close/index.ts deleted file mode 100644 index 459f4af3df..0000000000 --- a/packages/vue-icon/src/close/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Close from '@opentiny/vue-theme/svgs/close.svg' - -export default () => svg({ name: 'IconClose', component: Close })() diff --git a/packages/vue-icon/src/cloud-download.ts b/packages/vue-icon/src/cloud-download.ts new file mode 100644 index 0000000000..a157f347b7 --- /dev/null +++ b/packages/vue-icon/src/cloud-download.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import CloudDownload from '@opentiny/vue-theme/svgs/cloud-download.svg' + +export default () => svg({ name: 'IconCloudDownload', component: CloudDownload, filledComponent: CloudDownload })() diff --git a/packages/vue-icon/src/cloud-download/index.ts b/packages/vue-icon/src/cloud-download/index.ts deleted file mode 100644 index 3de64befbf..0000000000 --- a/packages/vue-icon/src/cloud-download/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import CloudDownload from '@opentiny/vue-theme/svgs/cloud-download.svg' - -export default () => svg({ name: 'IconCloudDownload', component: CloudDownload })() diff --git a/packages/vue-icon/src/cloud-upload.ts b/packages/vue-icon/src/cloud-upload.ts new file mode 100644 index 0000000000..9a3fbdde30 --- /dev/null +++ b/packages/vue-icon/src/cloud-upload.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import CloudUpload from '@opentiny/vue-theme/svgs/cloud-upload.svg' + +export default () => svg({ name: 'IconCloudUpload', component: CloudUpload, filledComponent: CloudUpload })() diff --git a/packages/vue-icon/src/cloud-upload/index.ts b/packages/vue-icon/src/cloud-upload/index.ts deleted file mode 100644 index f890ccde5f..0000000000 --- a/packages/vue-icon/src/cloud-upload/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import CloudUpload from '@opentiny/vue-theme/svgs/cloud-upload.svg' - -export default () => svg({ name: 'IconCloudUpload', component: CloudUpload })() diff --git a/packages/vue-icon/src/code.ts b/packages/vue-icon/src/code.ts new file mode 100644 index 0000000000..0b6d9700fb --- /dev/null +++ b/packages/vue-icon/src/code.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Code from '@opentiny/vue-theme/svgs/code.svg' + +export default () => svg({ name: 'IconCode', component: Code, filledComponent: Code })() diff --git a/packages/vue-icon/src/code/index.ts b/packages/vue-icon/src/code/index.ts deleted file mode 100644 index 5be5c26cf9..0000000000 --- a/packages/vue-icon/src/code/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Code from '@opentiny/vue-theme/svgs/code.svg' - -export default () => svg({ name: 'IconCode', component: Code })() diff --git a/packages/vue-icon/src/coin.ts b/packages/vue-icon/src/coin.ts new file mode 100644 index 0000000000..05dc225f22 --- /dev/null +++ b/packages/vue-icon/src/coin.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Coin from '@opentiny/vue-theme/svgs/coin.svg' + +export default () => svg({ name: 'IconCoin', component: Coin, filledComponent: Coin })() diff --git a/packages/vue-icon/src/coin/index.ts b/packages/vue-icon/src/coin/index.ts deleted file mode 100644 index ce067374ed..0000000000 --- a/packages/vue-icon/src/coin/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Coin from '@opentiny/vue-theme/svgs/coin.svg' - -export default () => svg({ name: 'IconCoin', component: Coin })() diff --git a/packages/vue-icon/src/col-reverse.ts b/packages/vue-icon/src/col-reverse.ts new file mode 100644 index 0000000000..59c7df37aa --- /dev/null +++ b/packages/vue-icon/src/col-reverse.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ColReverse from '@opentiny/vue-theme/svgs/col-reverse.svg' + +export default () => svg({ name: 'IconColReverse', component: ColReverse, filledComponent: ColReverse })() diff --git a/packages/vue-icon/src/col-reverse/index.ts b/packages/vue-icon/src/col-reverse/index.ts deleted file mode 100644 index aebe0325e9..0000000000 --- a/packages/vue-icon/src/col-reverse/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ColReverse from '@opentiny/vue-theme/svgs/col-reverse.svg' - -export default () => svg({ name: 'IconColReverse', component: ColReverse })() diff --git a/packages/vue-icon/src/commission.ts b/packages/vue-icon/src/commission.ts new file mode 100644 index 0000000000..80158714fe --- /dev/null +++ b/packages/vue-icon/src/commission.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Commission from '@opentiny/vue-theme/svgs/commission.svg' + +export default () => svg({ name: 'IconCommission', component: Commission, filledComponent: Commission })() diff --git a/packages/vue-icon/src/commission/index.ts b/packages/vue-icon/src/commission/index.ts deleted file mode 100644 index 47d4a20abb..0000000000 --- a/packages/vue-icon/src/commission/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Commission from '@opentiny/vue-theme/svgs/commission.svg' - -export default () => svg({ name: 'IconCommission', component: Commission })() diff --git a/packages/vue-icon/src/config.ts b/packages/vue-icon/src/config.ts new file mode 100644 index 0000000000..91d3861877 --- /dev/null +++ b/packages/vue-icon/src/config.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Config from '@opentiny/vue-theme/svgs/config.svg' + +export default () => svg({ name: 'IconConfig', component: Config, filledComponent: Config })() diff --git a/packages/vue-icon/src/config/index.ts b/packages/vue-icon/src/config/index.ts deleted file mode 100644 index a0d7208c39..0000000000 --- a/packages/vue-icon/src/config/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Config from '@opentiny/vue-theme/svgs/config.svg' - -export default () => svg({ name: 'IconConfig', component: Config })() diff --git a/packages/vue-icon/src/conment-refresh.ts b/packages/vue-icon/src/conment-refresh.ts new file mode 100644 index 0000000000..fb458fd42d --- /dev/null +++ b/packages/vue-icon/src/conment-refresh.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ConmentRefresh from '@opentiny/vue-theme/svgs/conment-refresh.svg' + +export default () => svg({ name: 'IconConmentRefresh', component: ConmentRefresh, filledComponent: ConmentRefresh })() diff --git a/packages/vue-icon/src/conment-refresh/index.ts b/packages/vue-icon/src/conment-refresh/index.ts deleted file mode 100644 index 0e97f71f09..0000000000 --- a/packages/vue-icon/src/conment-refresh/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ConmentRefresh from '@opentiny/vue-theme/svgs/conment-refresh.svg' - -export default () => svg({ name: 'IconConmentRefresh', component: ConmentRefresh })() diff --git a/packages/vue-icon/src/copy-solid.ts b/packages/vue-icon/src/copy-solid.ts new file mode 100644 index 0000000000..1f9941616b --- /dev/null +++ b/packages/vue-icon/src/copy-solid.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import CopySolid from '@opentiny/vue-theme/svgs/copy-solid.svg' + +export default () => svg({ name: 'IconCopySolid', component: CopySolid, filledComponent: CopySolid })() diff --git a/packages/vue-icon/src/copy-solid/index.ts b/packages/vue-icon/src/copy-solid/index.ts deleted file mode 100644 index ae06b23a40..0000000000 --- a/packages/vue-icon/src/copy-solid/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import CopySolid from '@opentiny/vue-theme/svgs/copy-solid.svg' - -export default () => svg({ name: 'IconCopySolid', component: CopySolid })() diff --git a/packages/vue-icon/src/copy.ts b/packages/vue-icon/src/copy.ts new file mode 100644 index 0000000000..8cbf795bfa --- /dev/null +++ b/packages/vue-icon/src/copy.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Copy from '@opentiny/vue-theme/svgs/copy.svg' + +export default () => svg({ name: 'IconCopy', component: Copy, filledComponent: Copy })() diff --git a/packages/vue-icon/src/copy/index.ts b/packages/vue-icon/src/copy/index.ts deleted file mode 100644 index 7f5374d79e..0000000000 --- a/packages/vue-icon/src/copy/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Copy from '@opentiny/vue-theme/svgs/copy.svg' - -export default () => svg({ name: 'IconCopy', component: Copy })() diff --git a/packages/vue-icon/src/course.ts b/packages/vue-icon/src/course.ts new file mode 100644 index 0000000000..5ac86d8f49 --- /dev/null +++ b/packages/vue-icon/src/course.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Course from '@opentiny/vue-theme/svgs/course.svg' + +export default () => svg({ name: 'IconCourse', component: Course, filledComponent: Course })() diff --git a/packages/vue-icon/src/course/index.ts b/packages/vue-icon/src/course/index.ts deleted file mode 100644 index a9f8210387..0000000000 --- a/packages/vue-icon/src/course/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Course from '@opentiny/vue-theme/svgs/course.svg' - -export default () => svg({ name: 'IconCourse', component: Course })() diff --git a/packages/vue-icon/src/creating.ts b/packages/vue-icon/src/creating.ts new file mode 100644 index 0000000000..0237a7da71 --- /dev/null +++ b/packages/vue-icon/src/creating.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Creating from '@opentiny/vue-theme/svgs/creating.svg' + +export default () => svg({ name: 'IconCreating', component: Creating, filledComponent: Creating })() diff --git a/packages/vue-icon/src/creating/index.ts b/packages/vue-icon/src/creating/index.ts deleted file mode 100644 index 0eb4bc8ee7..0000000000 --- a/packages/vue-icon/src/creating/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Creating from '@opentiny/vue-theme/svgs/creating.svg' - -export default () => svg({ name: 'IconCreating', component: Creating })() diff --git a/packages/vue-icon/src/crop.ts b/packages/vue-icon/src/crop.ts new file mode 100644 index 0000000000..29db0611d2 --- /dev/null +++ b/packages/vue-icon/src/crop.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Crop from '@opentiny/vue-theme/svgs/crop.svg' + +export default () => svg({ name: 'IconCrop', component: Crop, filledComponent: Crop })() diff --git a/packages/vue-icon/src/crop/index.ts b/packages/vue-icon/src/crop/index.ts deleted file mode 100644 index a6cd43ec6a..0000000000 --- a/packages/vue-icon/src/crop/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Crop from '@opentiny/vue-theme/svgs/crop.svg' - -export default () => svg({ name: 'IconCrop', component: Crop })() diff --git a/packages/vue-icon/src/cue-l-o.ts b/packages/vue-icon/src/cue-l-o.ts new file mode 100644 index 0000000000..9c5a2afbfb --- /dev/null +++ b/packages/vue-icon/src/cue-l-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import CueLO from '@opentiny/vue-theme/svgs/cue-l-o.svg' + +export default () => svg({ name: 'IconCueLO', component: CueLO, filledComponent: CueLO })() diff --git a/packages/vue-icon/src/cue-l-o/index.ts b/packages/vue-icon/src/cue-l-o/index.ts deleted file mode 100644 index 3096ee3c3d..0000000000 --- a/packages/vue-icon/src/cue-l-o/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import CueLO from '@opentiny/vue-theme/svgs/cue-l-o.svg' - -export default () => svg({ name: 'IconCueLO', component: CueLO })() diff --git a/packages/vue-icon/src/cue-l.ts b/packages/vue-icon/src/cue-l.ts new file mode 100644 index 0000000000..ccbd9d0bce --- /dev/null +++ b/packages/vue-icon/src/cue-l.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import CueL from '@opentiny/vue-theme/svgs/cue-l.svg' + +export default () => svg({ name: 'IconCueL', component: CueL, filledComponent: CueL })() diff --git a/packages/vue-icon/src/cue-l/index.ts b/packages/vue-icon/src/cue-l/index.ts deleted file mode 100644 index 445db45b65..0000000000 --- a/packages/vue-icon/src/cue-l/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import CueL from '@opentiny/vue-theme/svgs/cue-l.svg' - -export default () => svg({ name: 'IconCueL', component: CueL })() diff --git a/packages/vue-icon/src/custom.ts b/packages/vue-icon/src/custom.ts new file mode 100644 index 0000000000..da50de6417 --- /dev/null +++ b/packages/vue-icon/src/custom.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Custom from '@opentiny/vue-theme/svgs/custom.svg' + +export default () => svg({ name: 'IconCustom', component: Custom, filledComponent: Custom })() diff --git a/packages/vue-icon/src/custom/index.ts b/packages/vue-icon/src/custom/index.ts deleted file mode 100644 index 1b0c9ba474..0000000000 --- a/packages/vue-icon/src/custom/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Custom from '@opentiny/vue-theme/svgs/custom.svg' - -export default () => svg({ name: 'IconCustom', component: Custom })() diff --git a/packages/vue-icon/src/customer-service.ts b/packages/vue-icon/src/customer-service.ts new file mode 100644 index 0000000000..ed7b2b91e0 --- /dev/null +++ b/packages/vue-icon/src/customer-service.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import CustomerService from '@opentiny/vue-theme/svgs/customer-service.svg' + +export default () => + svg({ name: 'IconCustomerService', component: CustomerService, filledComponent: CustomerService })() diff --git a/packages/vue-icon/src/customer-service/index.ts b/packages/vue-icon/src/customer-service/index.ts deleted file mode 100644 index 5a56efbdac..0000000000 --- a/packages/vue-icon/src/customer-service/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import CustomerService from '@opentiny/vue-theme/svgs/customer-service.svg' - -export default () => svg({ name: 'IconCustomerService', component: CustomerService })() diff --git a/packages/vue-icon/src/customs-clearance-form.ts b/packages/vue-icon/src/customs-clearance-form.ts new file mode 100644 index 0000000000..148855ce28 --- /dev/null +++ b/packages/vue-icon/src/customs-clearance-form.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import CustomsClearanceForm from '@opentiny/vue-theme/svgs/customs-clearance-form.svg' + +export default () => + svg({ name: 'IconCustomsClearanceForm', component: CustomsClearanceForm, filledComponent: CustomsClearanceForm })() diff --git a/packages/vue-icon/src/customs-clearance-form/index.ts b/packages/vue-icon/src/customs-clearance-form/index.ts deleted file mode 100644 index a5e622de33..0000000000 --- a/packages/vue-icon/src/customs-clearance-form/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import CustomsClearanceForm from '@opentiny/vue-theme/svgs/customs-clearance-form.svg' - -export default () => svg({ name: 'IconCustomsClearanceForm', component: CustomsClearanceForm })() diff --git a/packages/vue-icon/src/customs-declaration.ts b/packages/vue-icon/src/customs-declaration.ts new file mode 100644 index 0000000000..8f0fb45302 --- /dev/null +++ b/packages/vue-icon/src/customs-declaration.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import CustomsDeclaration from '@opentiny/vue-theme/svgs/customs-declaration.svg' + +export default () => + svg({ name: 'IconCustomsDeclaration', component: CustomsDeclaration, filledComponent: CustomsDeclaration })() diff --git a/packages/vue-icon/src/customs-declaration/index.ts b/packages/vue-icon/src/customs-declaration/index.ts deleted file mode 100644 index 9414b8b20c..0000000000 --- a/packages/vue-icon/src/customs-declaration/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import CustomsDeclaration from '@opentiny/vue-theme/svgs/customs-declaration.svg' - -export default () => svg({ name: 'IconCustomsDeclaration', component: CustomsDeclaration })() diff --git a/packages/vue-icon/src/data-source.ts b/packages/vue-icon/src/data-source.ts new file mode 100644 index 0000000000..8f49cfde89 --- /dev/null +++ b/packages/vue-icon/src/data-source.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DataSource from '@opentiny/vue-theme/svgs/data-source.svg' + +export default () => svg({ name: 'IconDataSource', component: DataSource, filledComponent: DataSource })() diff --git a/packages/vue-icon/src/data-source/index.ts b/packages/vue-icon/src/data-source/index.ts deleted file mode 100644 index 9fbf830666..0000000000 --- a/packages/vue-icon/src/data-source/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DataSource from '@opentiny/vue-theme/svgs/data-source.svg' - -export default () => svg({ name: 'IconDataSource', component: DataSource })() diff --git a/packages/vue-icon/src/day-view.ts b/packages/vue-icon/src/day-view.ts new file mode 100644 index 0000000000..1aa193f41c --- /dev/null +++ b/packages/vue-icon/src/day-view.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DayView from '@opentiny/vue-theme/svgs/day-view.svg' + +export default () => svg({ name: 'IconDayView', component: DayView, filledComponent: DayView })() diff --git a/packages/vue-icon/src/day-view/index.ts b/packages/vue-icon/src/day-view/index.ts deleted file mode 100644 index a145313510..0000000000 --- a/packages/vue-icon/src/day-view/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DayView from '@opentiny/vue-theme/svgs/day-view.svg' - -export default () => svg({ name: 'IconDayView', component: DayView })() diff --git a/packages/vue-icon/src/default.ts b/packages/vue-icon/src/default.ts new file mode 100644 index 0000000000..e506dc5384 --- /dev/null +++ b/packages/vue-icon/src/default.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Default from '@opentiny/vue-theme/svgs/default.svg' + +export default () => svg({ name: 'IconDefault', component: Default, filledComponent: Default })() diff --git a/packages/vue-icon/src/default/index.ts b/packages/vue-icon/src/default/index.ts deleted file mode 100644 index f04c8ff52f..0000000000 --- a/packages/vue-icon/src/default/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Default from '@opentiny/vue-theme/svgs/default.svg' - -export default () => svg({ name: 'IconDefault', component: Default })() diff --git a/packages/vue-icon/src/defined-filtration.ts b/packages/vue-icon/src/defined-filtration.ts new file mode 100644 index 0000000000..5a3a8979ab --- /dev/null +++ b/packages/vue-icon/src/defined-filtration.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import DefinedFiltration from '@opentiny/vue-theme/svgs/defined-filtration.svg' + +export default () => + svg({ name: 'IconDefinedFiltration', component: DefinedFiltration, filledComponent: DefinedFiltration })() diff --git a/packages/vue-icon/src/defined-filtration/index.ts b/packages/vue-icon/src/defined-filtration/index.ts deleted file mode 100644 index 62a60ecbe1..0000000000 --- a/packages/vue-icon/src/defined-filtration/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DefinedFiltration from '@opentiny/vue-theme/svgs/defined-filtration.svg' - -export default () => svg({ name: 'IconDefinedFiltration', component: DefinedFiltration })() diff --git a/packages/vue-icon/src/del.ts b/packages/vue-icon/src/del.ts new file mode 100644 index 0000000000..2a8ca5cc98 --- /dev/null +++ b/packages/vue-icon/src/del.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Del from '@opentiny/vue-theme/svgs/del.svg' + +export default () => svg({ name: 'IconDel', component: Del, filledComponent: Del })() diff --git a/packages/vue-icon/src/del/index.ts b/packages/vue-icon/src/del/index.ts deleted file mode 100644 index 49ab140fe8..0000000000 --- a/packages/vue-icon/src/del/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Del from '@opentiny/vue-theme/svgs/del.svg' - -export default () => svg({ name: 'IconDel', component: Del })() diff --git a/packages/vue-icon/src/delegated-processing.ts b/packages/vue-icon/src/delegated-processing.ts new file mode 100644 index 0000000000..36e7d0b7e9 --- /dev/null +++ b/packages/vue-icon/src/delegated-processing.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import DelegatedProcessing from '@opentiny/vue-theme/svgs/delegated-processing.svg' + +export default () => + svg({ name: 'IconDelegatedProcessing', component: DelegatedProcessing, filledComponent: DelegatedProcessing })() diff --git a/packages/vue-icon/src/delegated-processing/index.ts b/packages/vue-icon/src/delegated-processing/index.ts deleted file mode 100644 index a1143fd542..0000000000 --- a/packages/vue-icon/src/delegated-processing/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DelegatedProcessing from '@opentiny/vue-theme/svgs/delegated-processing.svg' - -export default () => svg({ name: 'IconDelegatedProcessing', component: DelegatedProcessing })() diff --git a/packages/vue-icon/src/delete-l.ts b/packages/vue-icon/src/delete-l.ts new file mode 100644 index 0000000000..3fb9b54226 --- /dev/null +++ b/packages/vue-icon/src/delete-l.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DeleteL from '@opentiny/vue-theme/svgs/delete-l.svg' + +export default () => svg({ name: 'IconDeleteL', component: DeleteL, filledComponent: DeleteL })() diff --git a/packages/vue-icon/src/delete-l/index.ts b/packages/vue-icon/src/delete-l/index.ts deleted file mode 100644 index 0d0990d64d..0000000000 --- a/packages/vue-icon/src/delete-l/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DeleteL from '@opentiny/vue-theme/svgs/delete-l.svg' - -export default () => svg({ name: 'IconDeleteL', component: DeleteL })() diff --git a/packages/vue-icon/src/delete-page.ts b/packages/vue-icon/src/delete-page.ts new file mode 100644 index 0000000000..39c93fb64c --- /dev/null +++ b/packages/vue-icon/src/delete-page.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DeletePage from '@opentiny/vue-theme/svgs/delete-page.svg' + +export default () => svg({ name: 'IconDeletePage', component: DeletePage, filledComponent: DeletePage })() diff --git a/packages/vue-icon/src/delete-page/index.ts b/packages/vue-icon/src/delete-page/index.ts deleted file mode 100644 index 51d6a8a09a..0000000000 --- a/packages/vue-icon/src/delete-page/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DeletePage from '@opentiny/vue-theme/svgs/delete-page.svg' - -export default () => svg({ name: 'IconDeletePage', component: DeletePage })() diff --git a/packages/vue-icon/src/delete.ts b/packages/vue-icon/src/delete.ts new file mode 100644 index 0000000000..253d4b659a --- /dev/null +++ b/packages/vue-icon/src/delete.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Delete from '@opentiny/vue-theme/svgs/delete.svg' + +export default () => svg({ name: 'IconDelete', component: Delete, filledComponent: Delete })() diff --git a/packages/vue-icon/src/delete/index.ts b/packages/vue-icon/src/delete/index.ts deleted file mode 100644 index af2159eff7..0000000000 --- a/packages/vue-icon/src/delete/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Delete from '@opentiny/vue-theme/svgs/delete.svg' - -export default () => svg({ name: 'IconDelete', component: Delete })() diff --git a/packages/vue-icon/src/deleted.ts b/packages/vue-icon/src/deleted.ts new file mode 100644 index 0000000000..6d198afa04 --- /dev/null +++ b/packages/vue-icon/src/deleted.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Deleted from '@opentiny/vue-theme/svgs/deleted.svg' + +export default () => svg({ name: 'IconDeleted', component: Deleted, filledComponent: Deleted })() diff --git a/packages/vue-icon/src/deleted/index.ts b/packages/vue-icon/src/deleted/index.ts deleted file mode 100644 index c6226313e6..0000000000 --- a/packages/vue-icon/src/deleted/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Deleted from '@opentiny/vue-theme/svgs/deleted.svg' - -export default () => svg({ name: 'IconDeleted', component: Deleted })() diff --git a/packages/vue-icon/src/delta-down-o.ts b/packages/vue-icon/src/delta-down-o.ts new file mode 100644 index 0000000000..c989d246ce --- /dev/null +++ b/packages/vue-icon/src/delta-down-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DeltaDownO from '@opentiny/vue-theme/svgs/delta-down-o.svg' + +export default () => svg({ name: 'IconDeltaDownO', component: DeltaDownO, filledComponent: DeltaDownO })() diff --git a/packages/vue-icon/src/delta-down-o/index.ts b/packages/vue-icon/src/delta-down-o/index.ts deleted file mode 100644 index aec49d13e5..0000000000 --- a/packages/vue-icon/src/delta-down-o/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DeltaDownO from '@opentiny/vue-theme/svgs/delta-down-o.svg' - -export default () => svg({ name: 'IconDeltaDownO', component: DeltaDownO })() diff --git a/packages/vue-icon/src/delta-down.ts b/packages/vue-icon/src/delta-down.ts new file mode 100644 index 0000000000..95a8bbe8f3 --- /dev/null +++ b/packages/vue-icon/src/delta-down.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DeltaDown from '@opentiny/vue-theme/svgs/delta-down.svg' + +export default () => svg({ name: 'IconDeltaDown', component: DeltaDown, filledComponent: DeltaDown })() diff --git a/packages/vue-icon/src/delta-down/index.ts b/packages/vue-icon/src/delta-down/index.ts deleted file mode 100644 index bf8ade312b..0000000000 --- a/packages/vue-icon/src/delta-down/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DeltaDown from '@opentiny/vue-theme/svgs/delta-down.svg' - -export default () => svg({ name: 'IconDeltaDown', component: DeltaDown })() diff --git a/packages/vue-icon/src/delta-left-o.ts b/packages/vue-icon/src/delta-left-o.ts new file mode 100644 index 0000000000..af14bffac7 --- /dev/null +++ b/packages/vue-icon/src/delta-left-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DeltaLeftO from '@opentiny/vue-theme/svgs/delta-left-o.svg' + +export default () => svg({ name: 'IconDeltaLeftO', component: DeltaLeftO, filledComponent: DeltaLeftO })() diff --git a/packages/vue-icon/src/delta-left-o/index.ts b/packages/vue-icon/src/delta-left-o/index.ts deleted file mode 100644 index d7ad01cef8..0000000000 --- a/packages/vue-icon/src/delta-left-o/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DeltaLeftO from '@opentiny/vue-theme/svgs/delta-left-o.svg' - -export default () => svg({ name: 'IconDeltaLeftO', component: DeltaLeftO })() diff --git a/packages/vue-icon/src/delta-left.ts b/packages/vue-icon/src/delta-left.ts new file mode 100644 index 0000000000..e70ee7c881 --- /dev/null +++ b/packages/vue-icon/src/delta-left.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DeltaLeft from '@opentiny/vue-theme/svgs/delta-left.svg' + +export default () => svg({ name: 'IconDeltaLeft', component: DeltaLeft, filledComponent: DeltaLeft })() diff --git a/packages/vue-icon/src/delta-left/index.ts b/packages/vue-icon/src/delta-left/index.ts deleted file mode 100644 index dd766f23b8..0000000000 --- a/packages/vue-icon/src/delta-left/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DeltaLeft from '@opentiny/vue-theme/svgs/delta-left.svg' - -export default () => svg({ name: 'IconDeltaLeft', component: DeltaLeft })() diff --git a/packages/vue-icon/src/delta-right-o.ts b/packages/vue-icon/src/delta-right-o.ts new file mode 100644 index 0000000000..fbe4fcf465 --- /dev/null +++ b/packages/vue-icon/src/delta-right-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DeltaRightO from '@opentiny/vue-theme/svgs/delta-right-o.svg' + +export default () => svg({ name: 'IconDeltaRightO', component: DeltaRightO, filledComponent: DeltaRightO })() diff --git a/packages/vue-icon/src/delta-right-o/index.ts b/packages/vue-icon/src/delta-right-o/index.ts deleted file mode 100644 index 6d6680821e..0000000000 --- a/packages/vue-icon/src/delta-right-o/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DeltaRightO from '@opentiny/vue-theme/svgs/delta-right-o.svg' - -export default () => svg({ name: 'IconDeltaRightO', component: DeltaRightO })() diff --git a/packages/vue-icon/src/delta-right.ts b/packages/vue-icon/src/delta-right.ts new file mode 100644 index 0000000000..0c26b70e2c --- /dev/null +++ b/packages/vue-icon/src/delta-right.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DeltaRight from '@opentiny/vue-theme/svgs/delta-right.svg' + +export default () => svg({ name: 'IconDeltaRight', component: DeltaRight, filledComponent: DeltaRight })() diff --git a/packages/vue-icon/src/delta-right/index.ts b/packages/vue-icon/src/delta-right/index.ts deleted file mode 100644 index 73e7f79a61..0000000000 --- a/packages/vue-icon/src/delta-right/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DeltaRight from '@opentiny/vue-theme/svgs/delta-right.svg' - -export default () => svg({ name: 'IconDeltaRight', component: DeltaRight })() diff --git a/packages/vue-icon/src/delta-up-o.ts b/packages/vue-icon/src/delta-up-o.ts new file mode 100644 index 0000000000..21fb57ed3e --- /dev/null +++ b/packages/vue-icon/src/delta-up-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DeltaUpO from '@opentiny/vue-theme/svgs/delta-up-o.svg' + +export default () => svg({ name: 'IconDeltaUpO', component: DeltaUpO, filledComponent: DeltaUpO })() diff --git a/packages/vue-icon/src/delta-up-o/index.ts b/packages/vue-icon/src/delta-up-o/index.ts deleted file mode 100644 index 730652ec58..0000000000 --- a/packages/vue-icon/src/delta-up-o/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DeltaUpO from '@opentiny/vue-theme/svgs/delta-up-o.svg' - -export default () => svg({ name: 'IconDeltaUpO', component: DeltaUpO })() diff --git a/packages/vue-icon/src/delta-up.ts b/packages/vue-icon/src/delta-up.ts new file mode 100644 index 0000000000..3a5b5763f2 --- /dev/null +++ b/packages/vue-icon/src/delta-up.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DeltaUp from '@opentiny/vue-theme/svgs/delta-up.svg' + +export default () => svg({ name: 'IconDeltaUp', component: DeltaUp, filledComponent: DeltaUp })() diff --git a/packages/vue-icon/src/delta-up/index.ts b/packages/vue-icon/src/delta-up/index.ts deleted file mode 100644 index 147a5b87ff..0000000000 --- a/packages/vue-icon/src/delta-up/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DeltaUp from '@opentiny/vue-theme/svgs/delta-up.svg' - -export default () => svg({ name: 'IconDeltaUp', component: DeltaUp })() diff --git a/packages/vue-icon/src/derive.ts b/packages/vue-icon/src/derive.ts new file mode 100644 index 0000000000..46517ddd14 --- /dev/null +++ b/packages/vue-icon/src/derive.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Derive from '@opentiny/vue-theme/svgs/derive.svg' + +export default () => svg({ name: 'IconDerive', component: Derive, filledComponent: Derive })() diff --git a/packages/vue-icon/src/derive/index.ts b/packages/vue-icon/src/derive/index.ts deleted file mode 100644 index c9455d4b93..0000000000 --- a/packages/vue-icon/src/derive/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Derive from '@opentiny/vue-theme/svgs/derive.svg' - -export default () => svg({ name: 'IconDerive', component: Derive })() diff --git a/packages/vue-icon/src/descending.ts b/packages/vue-icon/src/descending.ts new file mode 100644 index 0000000000..8b6f9b5700 --- /dev/null +++ b/packages/vue-icon/src/descending.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Descending from '@opentiny/vue-theme/svgs/descending.svg' + +export default () => svg({ name: 'IconDescending', component: Descending, filledComponent: Descending })() diff --git a/packages/vue-icon/src/descending/index.ts b/packages/vue-icon/src/descending/index.ts deleted file mode 100644 index 2a4d8491a0..0000000000 --- a/packages/vue-icon/src/descending/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Descending from '@opentiny/vue-theme/svgs/descending.svg' - -export default () => svg({ name: 'IconDescending', component: Descending })() diff --git a/packages/vue-icon/src/desktop-view.ts b/packages/vue-icon/src/desktop-view.ts new file mode 100644 index 0000000000..276e55c5b6 --- /dev/null +++ b/packages/vue-icon/src/desktop-view.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DesktopView from '@opentiny/vue-theme/svgs/desktop-view.svg' + +export default () => svg({ name: 'IconDesktopView', component: DesktopView, filledComponent: DesktopView })() diff --git a/packages/vue-icon/src/desktop-view/index.ts b/packages/vue-icon/src/desktop-view/index.ts deleted file mode 100644 index f57ba091b5..0000000000 --- a/packages/vue-icon/src/desktop-view/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DesktopView from '@opentiny/vue-theme/svgs/desktop-view.svg' - -export default () => svg({ name: 'IconDesktopView', component: DesktopView })() diff --git a/packages/vue-icon/src/dialog.ts b/packages/vue-icon/src/dialog.ts new file mode 100644 index 0000000000..2eb99ffd77 --- /dev/null +++ b/packages/vue-icon/src/dialog.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Dialog from '@opentiny/vue-theme/svgs/dialog.svg' + +export default () => svg({ name: 'IconDialog', component: Dialog, filledComponent: Dialog })() diff --git a/packages/vue-icon/src/dialog/index.ts b/packages/vue-icon/src/dialog/index.ts deleted file mode 100644 index 48dc89440d..0000000000 --- a/packages/vue-icon/src/dialog/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Dialog from '@opentiny/vue-theme/svgs/dialog.svg' - -export default () => svg({ name: 'IconDialog', component: Dialog })() diff --git a/packages/vue-icon/src/dialog2.ts b/packages/vue-icon/src/dialog2.ts new file mode 100644 index 0000000000..a85832a569 --- /dev/null +++ b/packages/vue-icon/src/dialog2.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Dialog2 from '@opentiny/vue-theme/svgs/dialog2.svg' + +export default () => svg({ name: 'IconDialog2', component: Dialog2, filledComponent: Dialog2 })() diff --git a/packages/vue-icon/src/dialog2/index.ts b/packages/vue-icon/src/dialog2/index.ts deleted file mode 100644 index 2f05d50f67..0000000000 --- a/packages/vue-icon/src/dialog2/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Dialog2 from '@opentiny/vue-theme/svgs/dialog2.svg' - -export default () => svg({ name: 'IconDialog2', component: Dialog2 })() diff --git a/packages/vue-icon/src/direction-col.ts b/packages/vue-icon/src/direction-col.ts new file mode 100644 index 0000000000..1934c37411 --- /dev/null +++ b/packages/vue-icon/src/direction-col.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DirectionCol from '@opentiny/vue-theme/svgs/direction-col.svg' + +export default () => svg({ name: 'IconDirectionCol', component: DirectionCol, filledComponent: DirectionCol })() diff --git a/packages/vue-icon/src/direction-col/index.ts b/packages/vue-icon/src/direction-col/index.ts deleted file mode 100644 index 49a2e1eeaf..0000000000 --- a/packages/vue-icon/src/direction-col/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DirectionCol from '@opentiny/vue-theme/svgs/direction-col.svg' - -export default () => svg({ name: 'IconDirectionCol', component: DirectionCol })() diff --git a/packages/vue-icon/src/direction-row.ts b/packages/vue-icon/src/direction-row.ts new file mode 100644 index 0000000000..cb3cfb14e2 --- /dev/null +++ b/packages/vue-icon/src/direction-row.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DirectionRow from '@opentiny/vue-theme/svgs/direction-row.svg' + +export default () => svg({ name: 'IconDirectionRow', component: DirectionRow, filledComponent: DirectionRow })() diff --git a/packages/vue-icon/src/direction-row/index.ts b/packages/vue-icon/src/direction-row/index.ts deleted file mode 100644 index 70b5eddd18..0000000000 --- a/packages/vue-icon/src/direction-row/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DirectionRow from '@opentiny/vue-theme/svgs/direction-row.svg' - -export default () => svg({ name: 'IconDirectionRow', component: DirectionRow })() diff --git a/packages/vue-icon/src/disallowance.ts b/packages/vue-icon/src/disallowance.ts new file mode 100644 index 0000000000..8373060d6e --- /dev/null +++ b/packages/vue-icon/src/disallowance.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Disallowance from '@opentiny/vue-theme/svgs/disallowance.svg' + +export default () => svg({ name: 'IconDisallowance', component: Disallowance, filledComponent: Disallowance })() diff --git a/packages/vue-icon/src/disallowance/index.ts b/packages/vue-icon/src/disallowance/index.ts deleted file mode 100644 index 88a90c02ec..0000000000 --- a/packages/vue-icon/src/disallowance/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Disallowance from '@opentiny/vue-theme/svgs/disallowance.svg' - -export default () => svg({ name: 'IconDisallowance', component: Disallowance })() diff --git a/packages/vue-icon/src/discount-sup.ts b/packages/vue-icon/src/discount-sup.ts new file mode 100644 index 0000000000..9db5ac75db --- /dev/null +++ b/packages/vue-icon/src/discount-sup.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DiscountSup from '@opentiny/vue-theme/svgs/discount-sup.svg' + +export default () => svg({ name: 'IconDiscountSup', component: DiscountSup, filledComponent: DiscountSup })() diff --git a/packages/vue-icon/src/discount-sup/index.ts b/packages/vue-icon/src/discount-sup/index.ts deleted file mode 100644 index c331d91899..0000000000 --- a/packages/vue-icon/src/discount-sup/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DiscountSup from '@opentiny/vue-theme/svgs/discount-sup.svg' - -export default () => svg({ name: 'IconDiscountSup', component: DiscountSup })() diff --git a/packages/vue-icon/src/document.ts b/packages/vue-icon/src/document.ts new file mode 100644 index 0000000000..ece9d873c9 --- /dev/null +++ b/packages/vue-icon/src/document.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Document from '@opentiny/vue-theme/svgs/document.svg' + +export default () => svg({ name: 'IconDocument', component: Document, filledComponent: Document })() diff --git a/packages/vue-icon/src/document/index.ts b/packages/vue-icon/src/document/index.ts deleted file mode 100644 index 72cd6e2521..0000000000 --- a/packages/vue-icon/src/document/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Document from '@opentiny/vue-theme/svgs/document.svg' - -export default () => svg({ name: 'IconDocument', component: Document })() diff --git a/packages/vue-icon/src/done-mini.ts b/packages/vue-icon/src/done-mini.ts new file mode 100644 index 0000000000..5807124d32 --- /dev/null +++ b/packages/vue-icon/src/done-mini.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DoneMini from '@opentiny/vue-theme/svgs/done-mini.svg' + +export default () => svg({ name: 'IconDoneMini', component: DoneMini, filledComponent: DoneMini })() diff --git a/packages/vue-icon/src/done-mini/index.ts b/packages/vue-icon/src/done-mini/index.ts deleted file mode 100644 index f6bea67535..0000000000 --- a/packages/vue-icon/src/done-mini/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import DoneMini from '@opentiny/vue-theme/svgs/done-mini.svg' - -export default () => svg({ name: 'IconDoneMini', component: DoneMini })() diff --git a/packages/vue-icon/src/done.ts b/packages/vue-icon/src/done.ts new file mode 100644 index 0000000000..775eb0570c --- /dev/null +++ b/packages/vue-icon/src/done.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Done from '@opentiny/vue-theme/svgs/done.svg' + +export default () => svg({ name: 'IconDone', component: Done, filledComponent: Done })() diff --git a/packages/vue-icon/src/done/index.ts b/packages/vue-icon/src/done/index.ts deleted file mode 100644 index 544a40523b..0000000000 --- a/packages/vue-icon/src/done/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import Done from '@opentiny/vue-theme/svgs/done.svg' - -export default () => svg({ name: 'IconDone', component: Done })() diff --git a/packages/vue-icon/src/dot-chart.ts b/packages/vue-icon/src/dot-chart.ts new file mode 100644 index 0000000000..57e79d8e63 --- /dev/null +++ b/packages/vue-icon/src/dot-chart.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DotChart from '@opentiny/vue-theme/svgs/dot-chart.svg' + +export default () => svg({ name: 'IconDotChart', component: DotChart, filledComponent: DotChart })() diff --git a/packages/vue-icon/src/dot-chart/index.ts b/packages/vue-icon/src/dot-chart/index.ts deleted file mode 100644 index ace4e8b6f2..0000000000 --- a/packages/vue-icon/src/dot-chart/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DotChart from '@opentiny/vue-theme/svgs/dot-chart.svg' - -export default () => svg({ name: 'IconDotChart', component: DotChart })() diff --git a/packages/vue-icon/src/dot-download.ts b/packages/vue-icon/src/dot-download.ts new file mode 100644 index 0000000000..a35a5e9980 --- /dev/null +++ b/packages/vue-icon/src/dot-download.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DotDownload from '@opentiny/vue-theme/svgs/dot-download.svg' + +export default () => svg({ name: 'IconDotDownload', component: DotDownload, filledComponent: DotDownload })() diff --git a/packages/vue-icon/src/dot-download/index.ts b/packages/vue-icon/src/dot-download/index.ts deleted file mode 100644 index beef4cd506..0000000000 --- a/packages/vue-icon/src/dot-download/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DotDownload from '@opentiny/vue-theme/svgs/dot-download.svg' - -export default () => svg({ name: 'iconDotDownload', component: DotDownload })() diff --git a/packages/vue-icon/src/dot-ipv4.ts b/packages/vue-icon/src/dot-ipv4.ts new file mode 100644 index 0000000000..be053b0c50 --- /dev/null +++ b/packages/vue-icon/src/dot-ipv4.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DotIpv4 from '@opentiny/vue-theme/svgs/dot-ipv4.svg' + +export default () => svg({ name: 'IconDotIpv4', component: DotIpv4, filledComponent: DotIpv4 })() diff --git a/packages/vue-icon/src/dot-ipv4/index.ts b/packages/vue-icon/src/dot-ipv4/index.ts deleted file mode 100644 index cf68f49058..0000000000 --- a/packages/vue-icon/src/dot-ipv4/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DotIpv4 from '@opentiny/vue-theme/svgs/dot-ipv4.svg' - -export default () => svg({ name: 'IconDotIpv4', component: DotIpv4 })() diff --git a/packages/vue-icon/src/double-left.ts b/packages/vue-icon/src/double-left.ts new file mode 100644 index 0000000000..9371d13e3a --- /dev/null +++ b/packages/vue-icon/src/double-left.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DoubleLeft from '@opentiny/vue-theme/svgs/double-left.svg' + +export default () => svg({ name: 'IconDoubleLeft', component: DoubleLeft, filledComponent: DoubleLeft })() diff --git a/packages/vue-icon/src/double-left/index.ts b/packages/vue-icon/src/double-left/index.ts deleted file mode 100644 index b4ce56b72a..0000000000 --- a/packages/vue-icon/src/double-left/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DoubleLeft from '@opentiny/vue-theme/svgs/double-left.svg' - -export default () => svg({ name: 'IconDoubleLeft', component: DoubleLeft })() diff --git a/packages/vue-icon/src/double-right.ts b/packages/vue-icon/src/double-right.ts new file mode 100644 index 0000000000..20f9083521 --- /dev/null +++ b/packages/vue-icon/src/double-right.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DoubleRight from '@opentiny/vue-theme/svgs/double-right.svg' + +export default () => svg({ name: 'IconDoubleRight', component: DoubleRight, filledComponent: DoubleRight })() diff --git a/packages/vue-icon/src/double-right/index.ts b/packages/vue-icon/src/double-right/index.ts deleted file mode 100644 index 7bb9dcb28e..0000000000 --- a/packages/vue-icon/src/double-right/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DoubleRight from '@opentiny/vue-theme/svgs/double-right.svg' - -export default () => svg({ name: 'IconDoubleRight', component: DoubleRight })() diff --git a/packages/vue-icon/src/down-o.ts b/packages/vue-icon/src/down-o.ts new file mode 100644 index 0000000000..5b90209a57 --- /dev/null +++ b/packages/vue-icon/src/down-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DownO from '@opentiny/vue-theme/svgs/down-o.svg' + +export default () => svg({ name: 'IconDownO', component: DownO, filledComponent: DownO })() diff --git a/packages/vue-icon/src/down-o/index.ts b/packages/vue-icon/src/down-o/index.ts deleted file mode 100644 index 5d7f8ff24a..0000000000 --- a/packages/vue-icon/src/down-o/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DownO from '@opentiny/vue-theme/svgs/down-o.svg' - -export default () => svg({ name: 'IconDownO', component: DownO })() diff --git a/packages/vue-icon/src/down-ward.ts b/packages/vue-icon/src/down-ward.ts new file mode 100644 index 0000000000..da1bd14d3f --- /dev/null +++ b/packages/vue-icon/src/down-ward.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DownWard from '@opentiny/vue-theme/svgs/down-ward.svg' + +export default () => svg({ name: 'IconDownWard', component: DownWard, filledComponent: DownWard })() diff --git a/packages/vue-icon/src/down-ward/index.ts b/packages/vue-icon/src/down-ward/index.ts deleted file mode 100644 index 242f29583b..0000000000 --- a/packages/vue-icon/src/down-ward/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DownWard from '@opentiny/vue-theme/svgs/down-ward.svg' - -export default () => svg({ name: 'IconDownWard', component: DownWard })() diff --git a/packages/vue-icon/src/down.ts b/packages/vue-icon/src/down.ts new file mode 100644 index 0000000000..2b4fcd092d --- /dev/null +++ b/packages/vue-icon/src/down.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Down from '@opentiny/vue-theme/svgs/down.svg' + +export default () => svg({ name: 'IconDown', component: Down, filledComponent: Down })() diff --git a/packages/vue-icon/src/down/index.ts b/packages/vue-icon/src/down/index.ts deleted file mode 100644 index bd240cd8ef..0000000000 --- a/packages/vue-icon/src/down/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Down from '@opentiny/vue-theme/svgs/down.svg' - -export default () => svg({ name: 'IconDown', component: Down })() diff --git a/packages/vue-icon/src/download-cloud.ts b/packages/vue-icon/src/download-cloud.ts new file mode 100644 index 0000000000..8f0890f48d --- /dev/null +++ b/packages/vue-icon/src/download-cloud.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DownloadCloud from '@opentiny/vue-theme/svgs/download-cloud.svg' + +export default () => svg({ name: 'IconDownloadCloud', component: DownloadCloud, filledComponent: DownloadCloud })() diff --git a/packages/vue-icon/src/download-cloud/index.ts b/packages/vue-icon/src/download-cloud/index.ts deleted file mode 100644 index ee9f27be1f..0000000000 --- a/packages/vue-icon/src/download-cloud/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DownloadCloud from '@opentiny/vue-theme/svgs/download-cloud.svg' - -export default () => svg({ name: 'IconDownloadCloud', component: DownloadCloud })() diff --git a/packages/vue-icon/src/download-link.ts b/packages/vue-icon/src/download-link.ts new file mode 100644 index 0000000000..8a7d08b62e --- /dev/null +++ b/packages/vue-icon/src/download-link.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DownloadLink from '@opentiny/vue-theme/svgs/download-link.svg' + +export default () => svg({ name: 'IconDownloadLink', component: DownloadLink, filledComponent: DownloadLink })() diff --git a/packages/vue-icon/src/download-link/index.ts b/packages/vue-icon/src/download-link/index.ts deleted file mode 100644 index d4308c848e..0000000000 --- a/packages/vue-icon/src/download-link/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DownloadLink from '@opentiny/vue-theme/svgs/download-link.svg' - -export default () => svg({ name: 'IconDownloadLink', component: DownloadLink })() diff --git a/packages/vue-icon/src/download.ts b/packages/vue-icon/src/download.ts new file mode 100644 index 0000000000..51cb403725 --- /dev/null +++ b/packages/vue-icon/src/download.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Download from '@opentiny/vue-theme/svgs/download.svg' + +export default () => svg({ name: 'IconDownload', component: Download, filledComponent: Download })() diff --git a/packages/vue-icon/src/download/index.ts b/packages/vue-icon/src/download/index.ts deleted file mode 100644 index a0677b4b17..0000000000 --- a/packages/vue-icon/src/download/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Download from '@opentiny/vue-theme/svgs/download.svg' - -export default () => svg({ name: 'IconDownload', component: Download })() diff --git a/packages/vue-icon/src/draft.ts b/packages/vue-icon/src/draft.ts new file mode 100644 index 0000000000..3cc99fa79a --- /dev/null +++ b/packages/vue-icon/src/draft.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Draft from '@opentiny/vue-theme/svgs/draft.svg' + +export default () => svg({ name: 'IconDraft', component: Draft, filledComponent: Draft })() diff --git a/packages/vue-icon/src/draft/index.ts b/packages/vue-icon/src/draft/index.ts deleted file mode 100644 index 43fc062ee5..0000000000 --- a/packages/vue-icon/src/draft/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Draft from '@opentiny/vue-theme/svgs/draft.svg' - -export default () => svg({ name: 'IconDraft', component: Draft })() diff --git a/packages/vue-icon/src/draw-flowchart.ts b/packages/vue-icon/src/draw-flowchart.ts new file mode 100644 index 0000000000..8fb6d4c0b7 --- /dev/null +++ b/packages/vue-icon/src/draw-flowchart.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import DrawFlowchart from '@opentiny/vue-theme/svgs/draw-flowchart.svg' + +export default () => svg({ name: 'IconDrawFlowchart', component: DrawFlowchart, filledComponent: DrawFlowchart })() diff --git a/packages/vue-icon/src/draw-flowchart/index.ts b/packages/vue-icon/src/draw-flowchart/index.ts deleted file mode 100644 index 81152b7a6a..0000000000 --- a/packages/vue-icon/src/draw-flowchart/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import DrawFlowchart from '@opentiny/vue-theme/svgs/draw-flowchart.svg' - -export default () => svg({ name: 'IconDrawFlowchart', component: DrawFlowchart })() diff --git a/packages/vue-icon/src/earth-lined.ts b/packages/vue-icon/src/earth-lined.ts new file mode 100644 index 0000000000..defdf4c87b --- /dev/null +++ b/packages/vue-icon/src/earth-lined.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EarthLined from '@opentiny/vue-theme/svgs/earth-lined.svg' + +export default () => svg({ name: 'IconEarthLined', component: EarthLined, filledComponent: EarthLined })() diff --git a/packages/vue-icon/src/earth-lined/index.ts b/packages/vue-icon/src/earth-lined/index.ts deleted file mode 100644 index aa06ad4866..0000000000 --- a/packages/vue-icon/src/earth-lined/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import EarthLined from '@opentiny/vue-theme/svgs/earth-lined.svg' - -export default () => svg({ name: 'IconEarthLined', component: EarthLined })() diff --git a/packages/vue-icon/src/edit.ts b/packages/vue-icon/src/edit.ts new file mode 100644 index 0000000000..81197de258 --- /dev/null +++ b/packages/vue-icon/src/edit.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Edit from '@opentiny/vue-theme/svgs/edit.svg' + +export default () => svg({ name: 'IconEdit', component: Edit, filledComponent: Edit })() diff --git a/packages/vue-icon/src/edit/index.ts b/packages/vue-icon/src/edit/index.ts deleted file mode 100644 index a33c2531ea..0000000000 --- a/packages/vue-icon/src/edit/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Edit from '@opentiny/vue-theme/svgs/edit.svg' - -export default () => svg({ name: 'IconEdit', component: Edit })() diff --git a/packages/vue-icon/src/editor-align-center.ts b/packages/vue-icon/src/editor-align-center.ts new file mode 100644 index 0000000000..898abf1183 --- /dev/null +++ b/packages/vue-icon/src/editor-align-center.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import EditorAlignCenter from '@opentiny/vue-theme/svgs/editor-align-center.svg' + +export default () => + svg({ name: 'IconEditorAlignCenter', component: EditorAlignCenter, filledComponent: EditorAlignCenter })() diff --git a/packages/vue-icon/src/editor-align-center/index.ts b/packages/vue-icon/src/editor-align-center/index.ts deleted file mode 100644 index 6d3f439daf..0000000000 --- a/packages/vue-icon/src/editor-align-center/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorAlignCenter from '@opentiny/vue-theme/svgs/editor-align-center.svg' - -export default () => svg({ name: 'EditorAlignCenter', component: EditorAlignCenter })() diff --git a/packages/vue-icon/src/editor-align-left.ts b/packages/vue-icon/src/editor-align-left.ts new file mode 100644 index 0000000000..9abb157724 --- /dev/null +++ b/packages/vue-icon/src/editor-align-left.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import EditorAlignLeft from '@opentiny/vue-theme/svgs/editor-align-left.svg' + +export default () => + svg({ name: 'IconEditorAlignLeft', component: EditorAlignLeft, filledComponent: EditorAlignLeft })() diff --git a/packages/vue-icon/src/editor-align-left/index.ts b/packages/vue-icon/src/editor-align-left/index.ts deleted file mode 100644 index 011110e25d..0000000000 --- a/packages/vue-icon/src/editor-align-left/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorAlignLeft from '@opentiny/vue-theme/svgs/editor-align-left.svg' - -export default () => svg({ name: 'EditorAlignLeft', component: EditorAlignLeft })() diff --git a/packages/vue-icon/src/editor-align-right.ts b/packages/vue-icon/src/editor-align-right.ts new file mode 100644 index 0000000000..3e9e67d8e0 --- /dev/null +++ b/packages/vue-icon/src/editor-align-right.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import EditorAlignRight from '@opentiny/vue-theme/svgs/editor-align-right.svg' + +export default () => + svg({ name: 'IconEditorAlignRight', component: EditorAlignRight, filledComponent: EditorAlignRight })() diff --git a/packages/vue-icon/src/editor-align-right/index.ts b/packages/vue-icon/src/editor-align-right/index.ts deleted file mode 100644 index dab4ec9e60..0000000000 --- a/packages/vue-icon/src/editor-align-right/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorAlignRight from '@opentiny/vue-theme/svgs/editor-align-right.svg' - -export default () => svg({ name: 'EditorAlignRight', component: EditorAlignRight })() diff --git a/packages/vue-icon/src/editor-background.ts b/packages/vue-icon/src/editor-background.ts new file mode 100644 index 0000000000..a105636120 --- /dev/null +++ b/packages/vue-icon/src/editor-background.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import EditorBackground from '@opentiny/vue-theme/svgs/editor-background.svg' + +export default () => + svg({ name: 'IconEditorBackground', component: EditorBackground, filledComponent: EditorBackground })() diff --git a/packages/vue-icon/src/editor-background/index.ts b/packages/vue-icon/src/editor-background/index.ts deleted file mode 100644 index c501b45812..0000000000 --- a/packages/vue-icon/src/editor-background/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorBackground from '@opentiny/vue-theme/svgs/editor-background.svg' - -export default () => svg({ name: 'EditorBackground', component: EditorBackground })() diff --git a/packages/vue-icon/src/editor-bold.ts b/packages/vue-icon/src/editor-bold.ts new file mode 100644 index 0000000000..dff7aae634 --- /dev/null +++ b/packages/vue-icon/src/editor-bold.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EditorBold from '@opentiny/vue-theme/svgs/editor-bold.svg' + +export default () => svg({ name: 'IconEditorBold', component: EditorBold, filledComponent: EditorBold })() diff --git a/packages/vue-icon/src/editor-bold/index.ts b/packages/vue-icon/src/editor-bold/index.ts deleted file mode 100644 index 8dbe992242..0000000000 --- a/packages/vue-icon/src/editor-bold/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorBold from '@opentiny/vue-theme/svgs/editor-bold.svg' - -export default () => svg({ name: 'EditorBold', component: EditorBold })() diff --git a/packages/vue-icon/src/editor-code.ts b/packages/vue-icon/src/editor-code.ts new file mode 100644 index 0000000000..80e0995f2f --- /dev/null +++ b/packages/vue-icon/src/editor-code.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EditorCode from '@opentiny/vue-theme/svgs/editor-code.svg' + +export default () => svg({ name: 'IconEditorCode', component: EditorCode, filledComponent: EditorCode })() diff --git a/packages/vue-icon/src/editor-code/index.ts b/packages/vue-icon/src/editor-code/index.ts deleted file mode 100644 index 92ea6b10a4..0000000000 --- a/packages/vue-icon/src/editor-code/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorCode from '@opentiny/vue-theme/svgs/editor-code.svg' - -export default () => svg({ name: 'EditorCode', component: EditorCode })() diff --git a/packages/vue-icon/src/editor-deleteline.ts b/packages/vue-icon/src/editor-deleteline.ts new file mode 100644 index 0000000000..f23b3f9d5f --- /dev/null +++ b/packages/vue-icon/src/editor-deleteline.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import EditorDeleteline from '@opentiny/vue-theme/svgs/editor-deleteline.svg' + +export default () => + svg({ name: 'IconEditorDeleteline', component: EditorDeleteline, filledComponent: EditorDeleteline })() diff --git a/packages/vue-icon/src/editor-deleteline/index.ts b/packages/vue-icon/src/editor-deleteline/index.ts deleted file mode 100644 index b2981bf0f5..0000000000 --- a/packages/vue-icon/src/editor-deleteline/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorDeleteline from '@opentiny/vue-theme/svgs/editor-deleteline.svg' - -export default () => svg({ name: 'EditorDeleteline', component: EditorDeleteline })() diff --git a/packages/vue-icon/src/editor-eraser-filled/index.ts b/packages/vue-icon/src/editor-eraser-filled/index.ts deleted file mode 100644 index 6f7bdffc97..0000000000 --- a/packages/vue-icon/src/editor-eraser-filled/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import EditorEraserFilled from '@opentiny/vue-theme/svgs/editor-eraser-filled.svg' - -export default () => svg({ name: 'IconEditorEraserFilled', component: EditorEraserFilled })() diff --git a/packages/vue-icon/src/editor-eraser.ts b/packages/vue-icon/src/editor-eraser.ts new file mode 100644 index 0000000000..206f72e636 --- /dev/null +++ b/packages/vue-icon/src/editor-eraser.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import EditorEraser from '@opentiny/vue-theme/svgs/editor-eraser.svg' +import EditorEraserFilled from '@opentiny/vue-theme/svgs/editor-eraser-filled.svg' + +export default () => svg({ name: 'IconEditorEraser', component: EditorEraser, filledComponent: EditorEraserFilled })() diff --git a/packages/vue-icon/src/editor-eraser/index.ts b/packages/vue-icon/src/editor-eraser/index.ts deleted file mode 100644 index 97355f545a..0000000000 --- a/packages/vue-icon/src/editor-eraser/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorEraser from '@opentiny/vue-theme/svgs/editor-eraser.svg' - -export default () => svg({ name: 'EditorEraser', component: EditorEraser })() diff --git a/packages/vue-icon/src/editor-italic.ts b/packages/vue-icon/src/editor-italic.ts new file mode 100644 index 0000000000..2fe6709fa5 --- /dev/null +++ b/packages/vue-icon/src/editor-italic.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EditorItalic from '@opentiny/vue-theme/svgs/editor-italic.svg' + +export default () => svg({ name: 'IconEditorItalic', component: EditorItalic, filledComponent: EditorItalic })() diff --git a/packages/vue-icon/src/editor-italic/index.ts b/packages/vue-icon/src/editor-italic/index.ts deleted file mode 100644 index bab128ddc1..0000000000 --- a/packages/vue-icon/src/editor-italic/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorItalic from '@opentiny/vue-theme/svgs/editor-italic.svg' - -export default () => svg({ name: 'EditorItalic', component: EditorItalic })() diff --git a/packages/vue-icon/src/editor-left-border.ts b/packages/vue-icon/src/editor-left-border.ts new file mode 100644 index 0000000000..5c59ec9160 --- /dev/null +++ b/packages/vue-icon/src/editor-left-border.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import EditorLeftBorder from '@opentiny/vue-theme/svgs/editor-left-border.svg' + +export default () => + svg({ name: 'IconEditorLeftBorder', component: EditorLeftBorder, filledComponent: EditorLeftBorder })() diff --git a/packages/vue-icon/src/editor-left-border/index.ts b/packages/vue-icon/src/editor-left-border/index.ts deleted file mode 100644 index 0044f2e6d8..0000000000 --- a/packages/vue-icon/src/editor-left-border/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorLeftBorder from '@opentiny/vue-theme/svgs/editor-left-border.svg' - -export default () => svg({ name: 'EditorLeftBorder', component: EditorLeftBorder })() diff --git a/packages/vue-icon/src/editor-list-dot.ts b/packages/vue-icon/src/editor-list-dot.ts new file mode 100644 index 0000000000..d404d147f8 --- /dev/null +++ b/packages/vue-icon/src/editor-list-dot.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EditorListDot from '@opentiny/vue-theme/svgs/editor-list-dot.svg' + +export default () => svg({ name: 'IconEditorListDot', component: EditorListDot, filledComponent: EditorListDot })() diff --git a/packages/vue-icon/src/editor-list-dot/index.ts b/packages/vue-icon/src/editor-list-dot/index.ts deleted file mode 100644 index edc79a84d9..0000000000 --- a/packages/vue-icon/src/editor-list-dot/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorListDot from '@opentiny/vue-theme/svgs/editor-list-dot.svg' - -export default () => svg({ name: 'EditorListDot', component: EditorListDot })() diff --git a/packages/vue-icon/src/editor-list-num.ts b/packages/vue-icon/src/editor-list-num.ts new file mode 100644 index 0000000000..8cceefb1b1 --- /dev/null +++ b/packages/vue-icon/src/editor-list-num.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EditorListNum from '@opentiny/vue-theme/svgs/editor-list-num.svg' + +export default () => svg({ name: 'IconEditorListNum', component: EditorListNum, filledComponent: EditorListNum })() diff --git a/packages/vue-icon/src/editor-list-num/index.ts b/packages/vue-icon/src/editor-list-num/index.ts deleted file mode 100644 index 3806026d08..0000000000 --- a/packages/vue-icon/src/editor-list-num/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorListNum from '@opentiny/vue-theme/svgs/editor-list-num.svg' - -export default () => svg({ name: 'EditorListNum', component: EditorListNum })() diff --git a/packages/vue-icon/src/editor-list.ts b/packages/vue-icon/src/editor-list.ts new file mode 100644 index 0000000000..402b6a17cc --- /dev/null +++ b/packages/vue-icon/src/editor-list.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EditorList from '@opentiny/vue-theme/svgs/editor-list.svg' + +export default () => svg({ name: 'IconEditorList', component: EditorList, filledComponent: EditorList })() diff --git a/packages/vue-icon/src/editor-list/index.ts b/packages/vue-icon/src/editor-list/index.ts deleted file mode 100644 index 16e13b03fa..0000000000 --- a/packages/vue-icon/src/editor-list/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorList from '@opentiny/vue-theme/svgs/editor-list.svg' - -export default () => svg({ name: 'EditorList', component: EditorList })() diff --git a/packages/vue-icon/src/editor-menu-left.ts b/packages/vue-icon/src/editor-menu-left.ts new file mode 100644 index 0000000000..41a92bf380 --- /dev/null +++ b/packages/vue-icon/src/editor-menu-left.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EditorMenuLeft from '@opentiny/vue-theme/svgs/editor-menu-left.svg' + +export default () => svg({ name: 'IconEditorMenuLeft', component: EditorMenuLeft, filledComponent: EditorMenuLeft })() diff --git a/packages/vue-icon/src/editor-menu-left/index.ts b/packages/vue-icon/src/editor-menu-left/index.ts deleted file mode 100644 index c1aa1d8000..0000000000 --- a/packages/vue-icon/src/editor-menu-left/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorMenuLeft from '@opentiny/vue-theme/svgs/editor-menu-left.svg' - -export default () => svg({ name: 'EditorMenuLeft', component: EditorMenuLeft })() diff --git a/packages/vue-icon/src/editor-menu-right.ts b/packages/vue-icon/src/editor-menu-right.ts new file mode 100644 index 0000000000..3e38a4235a --- /dev/null +++ b/packages/vue-icon/src/editor-menu-right.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import EditorMenuRight from '@opentiny/vue-theme/svgs/editor-menu-right.svg' + +export default () => + svg({ name: 'IconEditorMenuRight', component: EditorMenuRight, filledComponent: EditorMenuRight })() diff --git a/packages/vue-icon/src/editor-menu-right/index.ts b/packages/vue-icon/src/editor-menu-right/index.ts deleted file mode 100644 index d1c7f76cae..0000000000 --- a/packages/vue-icon/src/editor-menu-right/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorMenuRight from '@opentiny/vue-theme/svgs/editor-menu-right.svg' - -export default () => svg({ name: 'EditorMenuRight', component: EditorMenuRight })() diff --git a/packages/vue-icon/src/editor-quote.ts b/packages/vue-icon/src/editor-quote.ts new file mode 100644 index 0000000000..4d08e0ad06 --- /dev/null +++ b/packages/vue-icon/src/editor-quote.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EditorQuote from '@opentiny/vue-theme/svgs/editor-quote.svg' + +export default () => svg({ name: 'IconEditorQuote', component: EditorQuote, filledComponent: EditorQuote })() diff --git a/packages/vue-icon/src/editor-quote/index.ts b/packages/vue-icon/src/editor-quote/index.ts deleted file mode 100644 index ec9714c065..0000000000 --- a/packages/vue-icon/src/editor-quote/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorQuote from '@opentiny/vue-theme/svgs/editor-quote.svg' - -export default () => svg({ name: 'EditorQuote', component: EditorQuote })() diff --git a/packages/vue-icon/src/editor-redo.ts b/packages/vue-icon/src/editor-redo.ts new file mode 100644 index 0000000000..8d76b28e1d --- /dev/null +++ b/packages/vue-icon/src/editor-redo.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EditorRedo from '@opentiny/vue-theme/svgs/editor-redo.svg' + +export default () => svg({ name: 'IconEditorRedo', component: EditorRedo, filledComponent: EditorRedo })() diff --git a/packages/vue-icon/src/editor-redo/index.ts b/packages/vue-icon/src/editor-redo/index.ts deleted file mode 100644 index 35f954014b..0000000000 --- a/packages/vue-icon/src/editor-redo/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorRedo from '@opentiny/vue-theme/svgs/editor-redo.svg' - -export default () => svg({ name: 'EditorRedo', component: EditorRedo })() diff --git a/packages/vue-icon/src/editor-right-border.ts b/packages/vue-icon/src/editor-right-border.ts new file mode 100644 index 0000000000..57199542e6 --- /dev/null +++ b/packages/vue-icon/src/editor-right-border.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import EditorRightBorder from '@opentiny/vue-theme/svgs/editor-right-border.svg' + +export default () => + svg({ name: 'IconEditorRightBorder', component: EditorRightBorder, filledComponent: EditorRightBorder })() diff --git a/packages/vue-icon/src/editor-right-border/index.ts b/packages/vue-icon/src/editor-right-border/index.ts deleted file mode 100644 index ddf64849ae..0000000000 --- a/packages/vue-icon/src/editor-right-border/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorRightBorder from '@opentiny/vue-theme/svgs/editor-right-border.svg' - -export default () => svg({ name: 'EditorRightBorder', component: EditorRightBorder })() diff --git a/packages/vue-icon/src/editor-sub.ts b/packages/vue-icon/src/editor-sub.ts new file mode 100644 index 0000000000..45e9c9635f --- /dev/null +++ b/packages/vue-icon/src/editor-sub.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EditorSub from '@opentiny/vue-theme/svgs/editor-sub.svg' + +export default () => svg({ name: 'IconEditorSub', component: EditorSub, filledComponent: EditorSub })() diff --git a/packages/vue-icon/src/editor-sub/index.ts b/packages/vue-icon/src/editor-sub/index.ts deleted file mode 100644 index 0be653c821..0000000000 --- a/packages/vue-icon/src/editor-sub/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorSub from '@opentiny/vue-theme/svgs/editor-sub.svg' - -export default () => svg({ name: 'EditorSub', component: EditorSub })() diff --git a/packages/vue-icon/src/editor-subtitle.ts b/packages/vue-icon/src/editor-subtitle.ts new file mode 100644 index 0000000000..2d2e1d5a98 --- /dev/null +++ b/packages/vue-icon/src/editor-subtitle.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EditorSubtitle from '@opentiny/vue-theme/svgs/editor-subtitle.svg' + +export default () => svg({ name: 'IconEditorSubtitle', component: EditorSubtitle, filledComponent: EditorSubtitle })() diff --git a/packages/vue-icon/src/editor-subtitle/index.ts b/packages/vue-icon/src/editor-subtitle/index.ts deleted file mode 100644 index 7fb677608f..0000000000 --- a/packages/vue-icon/src/editor-subtitle/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorSubtitle from '@opentiny/vue-theme/svgs/editor-subtitle.svg' - -export default () => svg({ name: 'EditorSubtitle', component: EditorSubtitle })() diff --git a/packages/vue-icon/src/editor-super.ts b/packages/vue-icon/src/editor-super.ts new file mode 100644 index 0000000000..0e68213a9f --- /dev/null +++ b/packages/vue-icon/src/editor-super.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EditorSuper from '@opentiny/vue-theme/svgs/editor-super.svg' + +export default () => svg({ name: 'IconEditorSuper', component: EditorSuper, filledComponent: EditorSuper })() diff --git a/packages/vue-icon/src/editor-super/index.ts b/packages/vue-icon/src/editor-super/index.ts deleted file mode 100644 index 623194fd1f..0000000000 --- a/packages/vue-icon/src/editor-super/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorSuper from '@opentiny/vue-theme/svgs/editor-super.svg' - -export default () => svg({ name: 'EditorSuper', component: EditorSuper })() diff --git a/packages/vue-icon/src/editor-tab.ts b/packages/vue-icon/src/editor-tab.ts new file mode 100644 index 0000000000..e490e99bf1 --- /dev/null +++ b/packages/vue-icon/src/editor-tab.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EditorTab from '@opentiny/vue-theme/svgs/editor-tab.svg' + +export default () => svg({ name: 'IconEditorTab', component: EditorTab, filledComponent: EditorTab })() diff --git a/packages/vue-icon/src/editor-tab/index.ts b/packages/vue-icon/src/editor-tab/index.ts deleted file mode 100644 index 41086abb78..0000000000 --- a/packages/vue-icon/src/editor-tab/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorTab from '@opentiny/vue-theme/svgs/editor-tab.svg' - -export default () => svg({ name: 'IconEditorTab', component: EditorTab })() diff --git a/packages/vue-icon/src/editor-table.ts b/packages/vue-icon/src/editor-table.ts new file mode 100644 index 0000000000..e4de71a6f9 --- /dev/null +++ b/packages/vue-icon/src/editor-table.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EditorTable from '@opentiny/vue-theme/svgs/editor-table.svg' + +export default () => svg({ name: 'IconEditorTable', component: EditorTable, filledComponent: EditorTable })() diff --git a/packages/vue-icon/src/editor-table/index.ts b/packages/vue-icon/src/editor-table/index.ts deleted file mode 100644 index eefcad23bf..0000000000 --- a/packages/vue-icon/src/editor-table/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorTable from '@opentiny/vue-theme/svgs/editor-table.svg' - -export default () => svg({ name: 'EditorTable', component: EditorTable })() diff --git a/packages/vue-icon/src/editor-textcolor.ts b/packages/vue-icon/src/editor-textcolor.ts new file mode 100644 index 0000000000..1f895f6b50 --- /dev/null +++ b/packages/vue-icon/src/editor-textcolor.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import EditorTextcolor from '@opentiny/vue-theme/svgs/editor-textcolor.svg' + +export default () => + svg({ name: 'IconEditorTextcolor', component: EditorTextcolor, filledComponent: EditorTextcolor })() diff --git a/packages/vue-icon/src/editor-textcolor/index.ts b/packages/vue-icon/src/editor-textcolor/index.ts deleted file mode 100644 index fc8b2cedd9..0000000000 --- a/packages/vue-icon/src/editor-textcolor/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorTextcolor from '@opentiny/vue-theme/svgs/editor-textcolor.svg' - -export default () => svg({ name: 'EditorTextcolor', component: EditorTextcolor })() diff --git a/packages/vue-icon/src/editor-title.ts b/packages/vue-icon/src/editor-title.ts new file mode 100644 index 0000000000..4decc61ad7 --- /dev/null +++ b/packages/vue-icon/src/editor-title.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EditorTitle from '@opentiny/vue-theme/svgs/editor-title.svg' + +export default () => svg({ name: 'IconEditorTitle', component: EditorTitle, filledComponent: EditorTitle })() diff --git a/packages/vue-icon/src/editor-title/index.ts b/packages/vue-icon/src/editor-title/index.ts deleted file mode 100644 index 0995e449cc..0000000000 --- a/packages/vue-icon/src/editor-title/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorTitle from '@opentiny/vue-theme/svgs/editor-title.svg' - -export default () => svg({ name: 'EditorTitle', component: EditorTitle })() diff --git a/packages/vue-icon/src/editor-underline.ts b/packages/vue-icon/src/editor-underline.ts new file mode 100644 index 0000000000..e2dce29daa --- /dev/null +++ b/packages/vue-icon/src/editor-underline.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import EditorUnderline from '@opentiny/vue-theme/svgs/editor-underline.svg' + +export default () => + svg({ name: 'IconEditorUnderline', component: EditorUnderline, filledComponent: EditorUnderline })() diff --git a/packages/vue-icon/src/editor-underline/index.ts b/packages/vue-icon/src/editor-underline/index.ts deleted file mode 100644 index 68da453574..0000000000 --- a/packages/vue-icon/src/editor-underline/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorUnderline from '@opentiny/vue-theme/svgs/editor-underline.svg' - -export default () => svg({ name: 'EditorUnderline', component: EditorUnderline })() diff --git a/packages/vue-icon/src/editor-undo.ts b/packages/vue-icon/src/editor-undo.ts new file mode 100644 index 0000000000..cf59924208 --- /dev/null +++ b/packages/vue-icon/src/editor-undo.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EditorUndo from '@opentiny/vue-theme/svgs/editor-undo.svg' + +export default () => svg({ name: 'IconEditorUndo', component: EditorUndo, filledComponent: EditorUndo })() diff --git a/packages/vue-icon/src/editor-undo/index.ts b/packages/vue-icon/src/editor-undo/index.ts deleted file mode 100644 index 3bcd7ffa7e..0000000000 --- a/packages/vue-icon/src/editor-undo/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorUndo from '@opentiny/vue-theme/svgs/editor-undo.svg' - -export default () => svg({ name: 'EditorUndo', component: EditorUndo })() diff --git a/packages/vue-icon/src/editor-video.ts b/packages/vue-icon/src/editor-video.ts new file mode 100644 index 0000000000..5689cd6a49 --- /dev/null +++ b/packages/vue-icon/src/editor-video.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EditorVideo from '@opentiny/vue-theme/svgs/editor-video.svg' + +export default () => svg({ name: 'IconEditorVideo', component: EditorVideo, filledComponent: EditorVideo })() diff --git a/packages/vue-icon/src/editor-video/index.ts b/packages/vue-icon/src/editor-video/index.ts deleted file mode 100644 index f29f699c54..0000000000 --- a/packages/vue-icon/src/editor-video/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EditorVideo from '@opentiny/vue-theme/svgs/editor-video.svg' - -export default () => svg({ name: 'EditorVideo', component: EditorVideo })() diff --git a/packages/vue-icon/src/editor.ts b/packages/vue-icon/src/editor.ts new file mode 100644 index 0000000000..ed9ef67407 --- /dev/null +++ b/packages/vue-icon/src/editor.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Editor from '@opentiny/vue-theme/svgs/editor.svg' + +export default () => svg({ name: 'IconEditor', component: Editor, filledComponent: Editor })() diff --git a/packages/vue-icon/src/editor/index.ts b/packages/vue-icon/src/editor/index.ts deleted file mode 100644 index 63c205421d..0000000000 --- a/packages/vue-icon/src/editor/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Editor from '@opentiny/vue-theme/svgs/editor.svg' - -export default () => svg({ name: 'IconEditor', component: Editor })() diff --git a/packages/vue-icon/src/ellipsis.ts b/packages/vue-icon/src/ellipsis.ts new file mode 100644 index 0000000000..6da012eeec --- /dev/null +++ b/packages/vue-icon/src/ellipsis.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Ellipsis from '@opentiny/vue-theme/svgs/ellipsis.svg' + +export default () => svg({ name: 'IconEllipsis', component: Ellipsis, filledComponent: Ellipsis })() diff --git a/packages/vue-icon/src/ellipsis/index.ts b/packages/vue-icon/src/ellipsis/index.ts deleted file mode 100644 index 15fe830f18..0000000000 --- a/packages/vue-icon/src/ellipsis/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Ellipsis from '@opentiny/vue-theme/svgs/ellipsis.svg' - -export default () => svg({ name: 'IconEllipsis', component: Ellipsis })() diff --git a/packages/vue-icon/src/email-add.ts b/packages/vue-icon/src/email-add.ts new file mode 100644 index 0000000000..ad1036dffd --- /dev/null +++ b/packages/vue-icon/src/email-add.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EmailAdd from '@opentiny/vue-theme/svgs/email-add.svg' + +export default () => svg({ name: 'IconEmailAdd', component: EmailAdd, filledComponent: EmailAdd })() diff --git a/packages/vue-icon/src/email-add/index.ts b/packages/vue-icon/src/email-add/index.ts deleted file mode 100644 index 73b3925068..0000000000 --- a/packages/vue-icon/src/email-add/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EmailAdd from '@opentiny/vue-theme/svgs/email-add.svg' - -export default () => svg({ name: 'IconEmailAdd', component: EmailAdd })() diff --git a/packages/vue-icon/src/email-circle.ts b/packages/vue-icon/src/email-circle.ts new file mode 100644 index 0000000000..7f3d5cce7b --- /dev/null +++ b/packages/vue-icon/src/email-circle.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EmailCircle from '@opentiny/vue-theme/svgs/email-circle.svg' + +export default () => svg({ name: 'IconEmailCircle', component: EmailCircle, filledComponent: EmailCircle })() diff --git a/packages/vue-icon/src/email-circle/index.ts b/packages/vue-icon/src/email-circle/index.ts deleted file mode 100644 index f9634b142b..0000000000 --- a/packages/vue-icon/src/email-circle/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EmailCircle from '@opentiny/vue-theme/svgs/email-circle.svg' - -export default () => svg({ name: 'IconEmailCircle', component: EmailCircle })() diff --git a/packages/vue-icon/src/end.ts b/packages/vue-icon/src/end.ts new file mode 100644 index 0000000000..bc0f452aac --- /dev/null +++ b/packages/vue-icon/src/end.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import End from '@opentiny/vue-theme/svgs/end.svg' + +export default () => svg({ name: 'IconEnd', component: End, filledComponent: End })() diff --git a/packages/vue-icon/src/end/index.ts b/packages/vue-icon/src/end/index.ts deleted file mode 100644 index c4c362c56c..0000000000 --- a/packages/vue-icon/src/end/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import End from '@opentiny/vue-theme/svgs/end.svg' - -export default () => svg({ name: 'IconEnd', component: End })() diff --git a/packages/vue-icon/src/engine-workflow.ts b/packages/vue-icon/src/engine-workflow.ts new file mode 100644 index 0000000000..c5c73bbad7 --- /dev/null +++ b/packages/vue-icon/src/engine-workflow.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EngineWorkflow from '@opentiny/vue-theme/svgs/engine-workflow.svg' + +export default () => svg({ name: 'IconEngineWorkflow', component: EngineWorkflow, filledComponent: EngineWorkflow })() diff --git a/packages/vue-icon/src/engine-workflow/index.ts b/packages/vue-icon/src/engine-workflow/index.ts deleted file mode 100644 index 5aeaf335c9..0000000000 --- a/packages/vue-icon/src/engine-workflow/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EngineWorkflow from '@opentiny/vue-theme/svgs/engine-workflow.svg' - -export default () => svg({ name: 'IconEngineWorkflow', component: EngineWorkflow })() diff --git a/packages/vue-icon/src/error.ts b/packages/vue-icon/src/error.ts new file mode 100644 index 0000000000..9223df6202 --- /dev/null +++ b/packages/vue-icon/src/error.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Error from '@opentiny/vue-theme/svgs/error.svg' + +export default () => svg({ name: 'IconError', component: Error, filledComponent: Error })() diff --git a/packages/vue-icon/src/error/index.ts b/packages/vue-icon/src/error/index.ts deleted file mode 100644 index 4df93ac6eb..0000000000 --- a/packages/vue-icon/src/error/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Error from '@opentiny/vue-theme/svgs/error.svg' - -export default () => svg({ name: 'IconError', component: Error })() diff --git a/packages/vue-icon/src/espace-auto.ts b/packages/vue-icon/src/espace-auto.ts new file mode 100644 index 0000000000..48a7d6d33b --- /dev/null +++ b/packages/vue-icon/src/espace-auto.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import EspaceAuto from '@opentiny/vue-theme/svgs/espace-auto.svg' + +export default () => svg({ name: 'IconEspaceAuto', component: EspaceAuto, filledComponent: EspaceAuto })() diff --git a/packages/vue-icon/src/espace-auto/index.ts b/packages/vue-icon/src/espace-auto/index.ts deleted file mode 100644 index 5b924b70c4..0000000000 --- a/packages/vue-icon/src/espace-auto/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import EspaceAuto from '@opentiny/vue-theme/svgs/espace-auto.svg' - -export default () => svg({ name: 'IconEspaceAuto', component: EspaceAuto })() diff --git a/packages/vue-icon/src/espace.ts b/packages/vue-icon/src/espace.ts new file mode 100644 index 0000000000..11a08d6d53 --- /dev/null +++ b/packages/vue-icon/src/espace.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Espace from '@opentiny/vue-theme/svgs/espace.svg' + +export default () => svg({ name: 'IconEspace', component: Espace, filledComponent: Espace })() diff --git a/packages/vue-icon/src/espace/index.ts b/packages/vue-icon/src/espace/index.ts deleted file mode 100644 index a72b598f71..0000000000 --- a/packages/vue-icon/src/espace/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Espace from '@opentiny/vue-theme/svgs/espace.svg' - -export default () => svg({ name: 'IconEspace', component: Espace })() diff --git a/packages/vue-icon/src/excel-type.ts b/packages/vue-icon/src/excel-type.ts new file mode 100644 index 0000000000..b20e65ee69 --- /dev/null +++ b/packages/vue-icon/src/excel-type.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ExcelType from '@opentiny/vue-theme/svgs/excel-type.svg' + +export default () => svg({ name: 'IconExcelType', component: ExcelType, filledComponent: ExcelType })() diff --git a/packages/vue-icon/src/excel-type/index.ts b/packages/vue-icon/src/excel-type/index.ts deleted file mode 100644 index e3bd2a1f0d..0000000000 --- a/packages/vue-icon/src/excel-type/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import ExcelType from '@opentiny/vue-theme/svgs/excel-type.svg' - -export default () => svg({ name: 'IconExcelType', component: ExcelType })() diff --git a/packages/vue-icon/src/excel.ts b/packages/vue-icon/src/excel.ts new file mode 100644 index 0000000000..f98cc248e9 --- /dev/null +++ b/packages/vue-icon/src/excel.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Excel from '@opentiny/vue-theme/svgs/excel.svg' + +export default () => svg({ name: 'IconExcel', component: Excel, filledComponent: Excel })() diff --git a/packages/vue-icon/src/excel/index.ts b/packages/vue-icon/src/excel/index.ts deleted file mode 100644 index b65b775fc0..0000000000 --- a/packages/vue-icon/src/excel/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Excel from '@opentiny/vue-theme/svgs/excel.svg' - -export default () => svg({ name: 'IconExcel', component: Excel })() diff --git a/packages/vue-icon/src/exception-mini-o.ts b/packages/vue-icon/src/exception-mini-o.ts new file mode 100644 index 0000000000..8f65f6707f --- /dev/null +++ b/packages/vue-icon/src/exception-mini-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ExceptionMiniO from '@opentiny/vue-theme/svgs/exception-mini-o.svg' + +export default () => svg({ name: 'IconExceptionMiniO', component: ExceptionMiniO, filledComponent: ExceptionMiniO })() diff --git a/packages/vue-icon/src/exception-mini-o/index.ts b/packages/vue-icon/src/exception-mini-o/index.ts deleted file mode 100644 index 742677812f..0000000000 --- a/packages/vue-icon/src/exception-mini-o/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import ExceptionMiniO from '@opentiny/vue-theme/svgs/exception-mini-o.svg' - -export default () => svg({ name: 'IconExceptionMiniO', component: ExceptionMiniO })() diff --git a/packages/vue-icon/src/exception-o.ts b/packages/vue-icon/src/exception-o.ts new file mode 100644 index 0000000000..bfb1b2c981 --- /dev/null +++ b/packages/vue-icon/src/exception-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ExceptionO from '@opentiny/vue-theme/svgs/exception-o.svg' + +export default () => svg({ name: 'IconExceptionO', component: ExceptionO, filledComponent: ExceptionO })() diff --git a/packages/vue-icon/src/exception-o/index.ts b/packages/vue-icon/src/exception-o/index.ts deleted file mode 100644 index 5abba5e49c..0000000000 --- a/packages/vue-icon/src/exception-o/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import ExceptionO from '@opentiny/vue-theme/svgs/exception-o.svg' - -export default () => svg({ name: 'IconExceptionO', component: ExceptionO })() diff --git a/packages/vue-icon/src/exception.ts b/packages/vue-icon/src/exception.ts new file mode 100644 index 0000000000..0e1add64c0 --- /dev/null +++ b/packages/vue-icon/src/exception.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Exception from '@opentiny/vue-theme/svgs/exception.svg' + +export default () => svg({ name: 'IconException', component: Exception, filledComponent: Exception })() diff --git a/packages/vue-icon/src/exception/index.ts b/packages/vue-icon/src/exception/index.ts deleted file mode 100644 index 1b80ec948c..0000000000 --- a/packages/vue-icon/src/exception/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Exception from '@opentiny/vue-theme/svgs/exception.svg' - -export default () => svg({ name: 'IconException', component: Exception })() diff --git a/packages/vue-icon/src/exclamation.ts b/packages/vue-icon/src/exclamation.ts new file mode 100644 index 0000000000..e0f2a66dc4 --- /dev/null +++ b/packages/vue-icon/src/exclamation.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Exclamation from '@opentiny/vue-theme/svgs/exclamation.svg' + +export default () => svg({ name: 'IconExclamation', component: Exclamation, filledComponent: Exclamation })() diff --git a/packages/vue-icon/src/exclamation/index.ts b/packages/vue-icon/src/exclamation/index.ts deleted file mode 100644 index 084b6765b3..0000000000 --- a/packages/vue-icon/src/exclamation/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Exclamation from '@opentiny/vue-theme/svgs/exclamation.svg' - -export default () => svg({ name: 'IconExclamation', component: Exclamation })() diff --git a/packages/vue-icon/src/execution-phase.ts b/packages/vue-icon/src/execution-phase.ts new file mode 100644 index 0000000000..de4101bc5d --- /dev/null +++ b/packages/vue-icon/src/execution-phase.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ExecutionPhase from '@opentiny/vue-theme/svgs/execution-phase.svg' + +export default () => svg({ name: 'IconExecutionPhase', component: ExecutionPhase, filledComponent: ExecutionPhase })() diff --git a/packages/vue-icon/src/execution-phase/index.ts b/packages/vue-icon/src/execution-phase/index.ts deleted file mode 100644 index 492842c7ee..0000000000 --- a/packages/vue-icon/src/execution-phase/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import ExecutionPhase from '@opentiny/vue-theme/svgs/execution-phase.svg' - -export default () => svg({ name: 'IconExecutionPhase', component: ExecutionPhase })() diff --git a/packages/vue-icon/src/expand.ts b/packages/vue-icon/src/expand.ts new file mode 100644 index 0000000000..3b388fdcf4 --- /dev/null +++ b/packages/vue-icon/src/expand.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Expand from '@opentiny/vue-theme/svgs/expand.svg' + +export default () => svg({ name: 'IconExpand', component: Expand, filledComponent: Expand })() diff --git a/packages/vue-icon/src/expand/index.ts b/packages/vue-icon/src/expand/index.ts deleted file mode 100644 index 7086b2fe06..0000000000 --- a/packages/vue-icon/src/expand/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Expand from '@opentiny/vue-theme/svgs/expand.svg' - -export default () => svg({ name: 'IconExpand', component: Expand })() diff --git a/packages/vue-icon/src/export.ts b/packages/vue-icon/src/export.ts new file mode 100644 index 0000000000..c8cdb695a6 --- /dev/null +++ b/packages/vue-icon/src/export.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Export from '@opentiny/vue-theme/svgs/export.svg' + +export default () => svg({ name: 'IconExport', component: Export, filledComponent: Export })() diff --git a/packages/vue-icon/src/export/index.ts b/packages/vue-icon/src/export/index.ts deleted file mode 100644 index 6e58d1c760..0000000000 --- a/packages/vue-icon/src/export/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Export from '@opentiny/vue-theme/svgs/export.svg' - -export default () => svg({ name: 'IconExport', component: Export })() diff --git a/packages/vue-icon/src/express-search.ts b/packages/vue-icon/src/express-search.ts new file mode 100644 index 0000000000..e5b26bcb85 --- /dev/null +++ b/packages/vue-icon/src/express-search.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ExpressSearch from '@opentiny/vue-theme/svgs/express-search.svg' + +export default () => svg({ name: 'IconExpressSearch', component: ExpressSearch, filledComponent: ExpressSearch })() diff --git a/packages/vue-icon/src/express-search/index.ts b/packages/vue-icon/src/express-search/index.ts deleted file mode 100644 index 21f63f216c..0000000000 --- a/packages/vue-icon/src/express-search/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ExpressSearch from '@opentiny/vue-theme/svgs/express-search.svg' - -export default () => svg({ name: 'IconExpressSearch', component: ExpressSearch })() diff --git a/packages/vue-icon/src/eyeclose.ts b/packages/vue-icon/src/eyeclose.ts new file mode 100644 index 0000000000..78acaf85b6 --- /dev/null +++ b/packages/vue-icon/src/eyeclose.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Eyeclose from '@opentiny/vue-theme/svgs/eyeclose.svg' + +export default () => svg({ name: 'IconEyeclose', component: Eyeclose, filledComponent: Eyeclose })() diff --git a/packages/vue-icon/src/eyeclose/index.ts b/packages/vue-icon/src/eyeclose/index.ts deleted file mode 100644 index a2fa05eeab..0000000000 --- a/packages/vue-icon/src/eyeclose/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Eyeclose from '@opentiny/vue-theme/svgs/eyeclose.svg' - -export default () => svg({ name: 'IconEyeclose', component: Eyeclose })() diff --git a/packages/vue-icon/src/eyeopen.ts b/packages/vue-icon/src/eyeopen.ts new file mode 100644 index 0000000000..22138ee8fb --- /dev/null +++ b/packages/vue-icon/src/eyeopen.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Eyeopen from '@opentiny/vue-theme/svgs/eyeopen.svg' + +export default () => svg({ name: 'IconEyeopen', component: Eyeopen, filledComponent: Eyeopen })() diff --git a/packages/vue-icon/src/eyeopen/index.ts b/packages/vue-icon/src/eyeopen/index.ts deleted file mode 100644 index 4f1ae682ce..0000000000 --- a/packages/vue-icon/src/eyeopen/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Eyeopen from '@opentiny/vue-theme/svgs/eyeopen.svg' - -export default () => svg({ name: 'IconEyeopen', component: Eyeopen })() diff --git a/packages/vue-icon/src/feedback.ts b/packages/vue-icon/src/feedback.ts new file mode 100644 index 0000000000..8aae667cb5 --- /dev/null +++ b/packages/vue-icon/src/feedback.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Feedback from '@opentiny/vue-theme/svgs/feedback.svg' + +export default () => svg({ name: 'IconFeedback', component: Feedback, filledComponent: Feedback })() diff --git a/packages/vue-icon/src/feedback/index.ts b/packages/vue-icon/src/feedback/index.ts deleted file mode 100644 index ea5f328429..0000000000 --- a/packages/vue-icon/src/feedback/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Feedback from '@opentiny/vue-theme/svgs/feedback.svg' - -export default () => svg({ name: 'IconFeedback', component: Feedback })() diff --git a/packages/vue-icon/src/file-cloudupload.ts b/packages/vue-icon/src/file-cloudupload.ts new file mode 100644 index 0000000000..8f7e1d1a5f --- /dev/null +++ b/packages/vue-icon/src/file-cloudupload.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import FileCloudupload from '@opentiny/vue-theme/svgs/file-cloudupload.svg' + +export default () => + svg({ name: 'IconFileCloudupload', component: FileCloudupload, filledComponent: FileCloudupload })() diff --git a/packages/vue-icon/src/file-cloudupload/index.ts b/packages/vue-icon/src/file-cloudupload/index.ts deleted file mode 100644 index 9c2cf9d75d..0000000000 --- a/packages/vue-icon/src/file-cloudupload/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FileCloudupload from '@opentiny/vue-theme/svgs/file-cloudupload.svg' - -export default () => svg({ name: 'IconFileCloudupload', component: FileCloudupload })() diff --git a/packages/vue-icon/src/file-excel.ts b/packages/vue-icon/src/file-excel.ts new file mode 100644 index 0000000000..efd446db7c --- /dev/null +++ b/packages/vue-icon/src/file-excel.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import FileExcel from '@opentiny/vue-theme/svgs/file-excel.svg' + +export default () => svg({ name: 'IconFileExcel', component: FileExcel, filledComponent: FileExcel })() diff --git a/packages/vue-icon/src/file-excel/index.ts b/packages/vue-icon/src/file-excel/index.ts deleted file mode 100644 index 0f776a5833..0000000000 --- a/packages/vue-icon/src/file-excel/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FileExcel from '@opentiny/vue-theme/svgs/file-excel.svg' - -export default () => svg({ name: 'IconFileExcel', component: FileExcel })() diff --git a/packages/vue-icon/src/file-type.ts b/packages/vue-icon/src/file-type.ts new file mode 100644 index 0000000000..c20333b381 --- /dev/null +++ b/packages/vue-icon/src/file-type.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import FileType from '@opentiny/vue-theme/svgs/file-type.svg' + +export default () => svg({ name: 'IconFileType', component: FileType, filledComponent: FileType })() diff --git a/packages/vue-icon/src/file-type/index.ts b/packages/vue-icon/src/file-type/index.ts deleted file mode 100644 index ee786da44b..0000000000 --- a/packages/vue-icon/src/file-type/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import FileType from '@opentiny/vue-theme/svgs/file-type.svg' - -export default () => svg({ name: 'IconFileType', component: FileType })() diff --git a/packages/vue-icon/src/file.ts b/packages/vue-icon/src/file.ts new file mode 100644 index 0000000000..1fabed525e --- /dev/null +++ b/packages/vue-icon/src/file.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import File from '@opentiny/vue-theme/svgs/file.svg' + +export default () => svg({ name: 'IconFile', component: File, filledComponent: File })() diff --git a/packages/vue-icon/src/file/index.ts b/packages/vue-icon/src/file/index.ts deleted file mode 100644 index f4a2216191..0000000000 --- a/packages/vue-icon/src/file/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import File from '@opentiny/vue-theme/svgs/file.svg' - -export default () => svg({ name: 'IconFile', component: File })() diff --git a/packages/vue-icon/src/files-circle.ts b/packages/vue-icon/src/files-circle.ts new file mode 100644 index 0000000000..df892adb38 --- /dev/null +++ b/packages/vue-icon/src/files-circle.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import FilesCircle from '@opentiny/vue-theme/svgs/files-circle.svg' + +export default () => svg({ name: 'IconFilesCircle', component: FilesCircle, filledComponent: FilesCircle })() diff --git a/packages/vue-icon/src/files-circle/index.ts b/packages/vue-icon/src/files-circle/index.ts deleted file mode 100644 index d1a78e27ab..0000000000 --- a/packages/vue-icon/src/files-circle/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FilesCircle from '@opentiny/vue-theme/svgs/files-circle.svg' - -export default () => svg({ name: 'IconFilesCircle', component: FilesCircle })() diff --git a/packages/vue-icon/src/files.ts b/packages/vue-icon/src/files.ts new file mode 100644 index 0000000000..bc880da386 --- /dev/null +++ b/packages/vue-icon/src/files.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Files from '@opentiny/vue-theme/svgs/files.svg' + +export default () => svg({ name: 'IconFiles', component: Files, filledComponent: Files })() diff --git a/packages/vue-icon/src/files/index.ts b/packages/vue-icon/src/files/index.ts deleted file mode 100644 index 6157a64fc2..0000000000 --- a/packages/vue-icon/src/files/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Files from '@opentiny/vue-theme/svgs/files.svg' - -export default () => svg({ name: 'IconFiles', component: Files })() diff --git a/packages/vue-icon/src/filetext.ts b/packages/vue-icon/src/filetext.ts new file mode 100644 index 0000000000..f6038142d0 --- /dev/null +++ b/packages/vue-icon/src/filetext.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Filetext from '@opentiny/vue-theme/svgs/filetext.svg' + +export default () => svg({ name: 'IconFiletext', component: Filetext, filledComponent: Filetext })() diff --git a/packages/vue-icon/src/filetext/index.ts b/packages/vue-icon/src/filetext/index.ts deleted file mode 100644 index f36b84c808..0000000000 --- a/packages/vue-icon/src/filetext/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Filetext from '@opentiny/vue-theme/svgs/filetext.svg' - -export default () => svg({ name: 'IconFiletext', component: Filetext })() diff --git a/packages/vue-icon/src/fileupload-pro.ts b/packages/vue-icon/src/fileupload-pro.ts new file mode 100644 index 0000000000..ca5b56d0ce --- /dev/null +++ b/packages/vue-icon/src/fileupload-pro.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import FileuploadPro from '@opentiny/vue-theme/svgs/fileupload-pro.svg' + +export default () => svg({ name: 'IconFileuploadPro', component: FileuploadPro, filledComponent: FileuploadPro })() diff --git a/packages/vue-icon/src/fileupload-pro/index.ts b/packages/vue-icon/src/fileupload-pro/index.ts deleted file mode 100644 index ef66636e78..0000000000 --- a/packages/vue-icon/src/fileupload-pro/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import FileuploadPro from '@opentiny/vue-theme/svgs/fileupload-pro.svg' - -export default () => svg({ name: 'IconFileuploadPro', component: FileuploadPro })() diff --git a/packages/vue-icon/src/fileupload.ts b/packages/vue-icon/src/fileupload.ts new file mode 100644 index 0000000000..888170e0b8 --- /dev/null +++ b/packages/vue-icon/src/fileupload.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Fileupload from '@opentiny/vue-theme/svgs/fileupload.svg' + +export default () => svg({ name: 'IconFileupload', component: Fileupload, filledComponent: Fileupload })() diff --git a/packages/vue-icon/src/fileupload/index.ts b/packages/vue-icon/src/fileupload/index.ts deleted file mode 100644 index 7df335a8ab..0000000000 --- a/packages/vue-icon/src/fileupload/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Fileupload from '@opentiny/vue-theme/svgs/fileupload.svg' - -export default () => svg({ name: 'IconFileupload', component: Fileupload })() diff --git a/packages/vue-icon/src/fillet-external-link.ts b/packages/vue-icon/src/fillet-external-link.ts new file mode 100644 index 0000000000..95c1198cc8 --- /dev/null +++ b/packages/vue-icon/src/fillet-external-link.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import FilletExternalLink from '@opentiny/vue-theme/svgs/fillet-external-link.svg' + +export default () => + svg({ name: 'IconFilletExternalLink', component: FilletExternalLink, filledComponent: FilletExternalLink })() diff --git a/packages/vue-icon/src/fillet-external-link/index.ts b/packages/vue-icon/src/fillet-external-link/index.ts deleted file mode 100644 index 11dbc4e6d3..0000000000 --- a/packages/vue-icon/src/fillet-external-link/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FilletExternalLink from '@opentiny/vue-theme/svgs/fillet-external-link.svg' - -export default () => svg({ name: 'IconFilletExternalLink', component: FilletExternalLink })() diff --git a/packages/vue-icon/src/filter.ts b/packages/vue-icon/src/filter.ts new file mode 100644 index 0000000000..df9257e929 --- /dev/null +++ b/packages/vue-icon/src/filter.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Filter from '@opentiny/vue-theme/svgs/filter.svg' + +export default () => svg({ name: 'IconFilter', component: Filter, filledComponent: Filter })() diff --git a/packages/vue-icon/src/filter/index.ts b/packages/vue-icon/src/filter/index.ts deleted file mode 100644 index cc7276102e..0000000000 --- a/packages/vue-icon/src/filter/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Filter from '@opentiny/vue-theme/svgs/filter.svg' - -export default () => svg({ name: 'IconFilter', component: Filter })() diff --git a/packages/vue-icon/src/filtered.ts b/packages/vue-icon/src/filtered.ts new file mode 100644 index 0000000000..ab763ac1c2 --- /dev/null +++ b/packages/vue-icon/src/filtered.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Filtered from '@opentiny/vue-theme/svgs/filtered.svg' + +export default () => svg({ name: 'IconFiltered', component: Filtered, filledComponent: Filtered })() diff --git a/packages/vue-icon/src/filtered/index.ts b/packages/vue-icon/src/filtered/index.ts deleted file mode 100644 index 02d6d1991c..0000000000 --- a/packages/vue-icon/src/filtered/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Filtered from '@opentiny/vue-theme/svgs/filtered.svg' - -export default () => svg({ name: 'IconFiltered', component: Filtered })() diff --git a/packages/vue-icon/src/finish-o.ts b/packages/vue-icon/src/finish-o.ts new file mode 100644 index 0000000000..b92a8f980e --- /dev/null +++ b/packages/vue-icon/src/finish-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import FinishO from '@opentiny/vue-theme/svgs/finish-o.svg' + +export default () => svg({ name: 'IconFinishO', component: FinishO, filledComponent: FinishO })() diff --git a/packages/vue-icon/src/finish-o/index.ts b/packages/vue-icon/src/finish-o/index.ts deleted file mode 100644 index e436b9ab5f..0000000000 --- a/packages/vue-icon/src/finish-o/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FinishO from '@opentiny/vue-theme/svgs/finish-o.svg' - -export default () => svg({ name: 'IconFinishO', component: FinishO })() diff --git a/packages/vue-icon/src/finish.ts b/packages/vue-icon/src/finish.ts new file mode 100644 index 0000000000..4036644f13 --- /dev/null +++ b/packages/vue-icon/src/finish.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Finish from '@opentiny/vue-theme/svgs/finish.svg' + +export default () => svg({ name: 'IconFinish', component: Finish, filledComponent: Finish })() diff --git a/packages/vue-icon/src/finish/index.ts b/packages/vue-icon/src/finish/index.ts deleted file mode 100644 index cd2e970777..0000000000 --- a/packages/vue-icon/src/finish/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import Finish from '@opentiny/vue-theme/svgs/finish.svg' - -export default svg({ name: 'IconFinish', component: Finish }) diff --git a/packages/vue-icon/src/flag.ts b/packages/vue-icon/src/flag.ts new file mode 100644 index 0000000000..80a2c2c48c --- /dev/null +++ b/packages/vue-icon/src/flag.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Flag from '@opentiny/vue-theme/svgs/flag.svg' + +export default () => svg({ name: 'IconFlag', component: Flag, filledComponent: Flag })() diff --git a/packages/vue-icon/src/flag/index.ts b/packages/vue-icon/src/flag/index.ts deleted file mode 100644 index 74d706af40..0000000000 --- a/packages/vue-icon/src/flag/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Flag from '@opentiny/vue-theme/svgs/flag.svg' - -export default () => svg({ name: 'IconFlag', component: Flag })() diff --git a/packages/vue-icon/src/folder-closed-solid.ts b/packages/vue-icon/src/folder-closed-solid.ts new file mode 100644 index 0000000000..075b63ad33 --- /dev/null +++ b/packages/vue-icon/src/folder-closed-solid.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import FolderClosedSolid from '@opentiny/vue-theme/svgs/folder-closed-solid.svg' + +export default () => + svg({ name: 'IconFolderClosedSolid', component: FolderClosedSolid, filledComponent: FolderClosedSolid })() diff --git a/packages/vue-icon/src/folder-closed-solid/index.ts b/packages/vue-icon/src/folder-closed-solid/index.ts deleted file mode 100644 index a6cebe65ec..0000000000 --- a/packages/vue-icon/src/folder-closed-solid/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FolderClosedSolid from '@opentiny/vue-theme/svgs/folder-closed-solid.svg' - -export default () => svg({ name: 'IconFolderClosedSolid', component: FolderClosedSolid })() diff --git a/packages/vue-icon/src/folder-closed.ts b/packages/vue-icon/src/folder-closed.ts new file mode 100644 index 0000000000..c26550e493 --- /dev/null +++ b/packages/vue-icon/src/folder-closed.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import FolderClosed from '@opentiny/vue-theme/svgs/folder-closed.svg' + +export default () => svg({ name: 'IconFolderClosed', component: FolderClosed, filledComponent: FolderClosed })() diff --git a/packages/vue-icon/src/folder-closed/index.ts b/packages/vue-icon/src/folder-closed/index.ts deleted file mode 100644 index 7cb4f1b087..0000000000 --- a/packages/vue-icon/src/folder-closed/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FolderClosed from '@opentiny/vue-theme/svgs/folder-closed.svg' - -export default () => svg({ name: 'IconFolderClosed', component: FolderClosed })() diff --git a/packages/vue-icon/src/folder-opened-solid.ts b/packages/vue-icon/src/folder-opened-solid.ts new file mode 100644 index 0000000000..a3e8f89623 --- /dev/null +++ b/packages/vue-icon/src/folder-opened-solid.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import FolderOpenedSolid from '@opentiny/vue-theme/svgs/folder-opened-solid.svg' + +export default () => + svg({ name: 'IconFolderOpenedSolid', component: FolderOpenedSolid, filledComponent: FolderOpenedSolid })() diff --git a/packages/vue-icon/src/folder-opened-solid/index.ts b/packages/vue-icon/src/folder-opened-solid/index.ts deleted file mode 100644 index af71c1d69a..0000000000 --- a/packages/vue-icon/src/folder-opened-solid/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FolderOpenedSolid from '@opentiny/vue-theme/svgs/folder-opened-solid.svg' - -export default () => svg({ name: 'IconFolderOpenedSolid', component: FolderOpenedSolid })() diff --git a/packages/vue-icon/src/folder-opened.ts b/packages/vue-icon/src/folder-opened.ts new file mode 100644 index 0000000000..aa933cd60a --- /dev/null +++ b/packages/vue-icon/src/folder-opened.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import FolderOpened from '@opentiny/vue-theme/svgs/folder-opened.svg' + +export default () => svg({ name: 'IconFolderOpened', component: FolderOpened, filledComponent: FolderOpened })() diff --git a/packages/vue-icon/src/folder-opened/index.ts b/packages/vue-icon/src/folder-opened/index.ts deleted file mode 100644 index 361dcc1b19..0000000000 --- a/packages/vue-icon/src/folder-opened/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FolderOpened from '@opentiny/vue-theme/svgs/folder-opened.svg' - -export default () => svg({ name: 'IconFolderOpened', component: FolderOpened })() diff --git a/packages/vue-icon/src/folder.ts b/packages/vue-icon/src/folder.ts new file mode 100644 index 0000000000..98af97e1f7 --- /dev/null +++ b/packages/vue-icon/src/folder.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Folder from '@opentiny/vue-theme/svgs/folder.svg' + +export default () => svg({ name: 'IconFolder', component: Folder, filledComponent: Folder })() diff --git a/packages/vue-icon/src/folder/index.ts b/packages/vue-icon/src/folder/index.ts deleted file mode 100644 index 63411fbab8..0000000000 --- a/packages/vue-icon/src/folder/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Folder from '@opentiny/vue-theme/svgs/folder.svg' - -export default () => svg({ name: 'IconFolder', component: Folder })() diff --git a/packages/vue-icon/src/font-color.ts b/packages/vue-icon/src/font-color.ts new file mode 100644 index 0000000000..bdde540e90 --- /dev/null +++ b/packages/vue-icon/src/font-color.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import FontColor from '@opentiny/vue-theme/svgs/font-color.svg' + +export default () => svg({ name: 'IconFontColor', component: FontColor, filledComponent: FontColor })() diff --git a/packages/vue-icon/src/font-color/index.ts b/packages/vue-icon/src/font-color/index.ts deleted file mode 100644 index f67702372d..0000000000 --- a/packages/vue-icon/src/font-color/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FontColor from '@opentiny/vue-theme/svgs/font-color.svg' - -export default () => svg({ name: 'IconFontColor', component: FontColor })() diff --git a/packages/vue-icon/src/font-family.ts b/packages/vue-icon/src/font-family.ts new file mode 100644 index 0000000000..a7d0c9b592 --- /dev/null +++ b/packages/vue-icon/src/font-family.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import FontFamily from '@opentiny/vue-theme/svgs/font-family.svg' + +export default () => svg({ name: 'IconFontFamily', component: FontFamily, filledComponent: FontFamily })() diff --git a/packages/vue-icon/src/font-family/index.ts b/packages/vue-icon/src/font-family/index.ts deleted file mode 100644 index 4a3a5b1099..0000000000 --- a/packages/vue-icon/src/font-family/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FontFamily from '@opentiny/vue-theme/svgs/font-family.svg' - -export default () => svg({ name: 'IconFontFamily', component: FontFamily })() diff --git a/packages/vue-icon/src/font-size.ts b/packages/vue-icon/src/font-size.ts new file mode 100644 index 0000000000..2db32ca06f --- /dev/null +++ b/packages/vue-icon/src/font-size.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import FontSize from '@opentiny/vue-theme/svgs/font-size.svg' + +export default () => svg({ name: 'IconFontSize', component: FontSize, filledComponent: FontSize })() diff --git a/packages/vue-icon/src/font-size/index.ts b/packages/vue-icon/src/font-size/index.ts deleted file mode 100644 index b8e2a5e90f..0000000000 --- a/packages/vue-icon/src/font-size/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FontSize from '@opentiny/vue-theme/svgs/font-size.svg' - -export default () => svg({ name: 'IconFontSize', component: FontSize })() diff --git a/packages/vue-icon/src/font-style.ts b/packages/vue-icon/src/font-style.ts new file mode 100644 index 0000000000..56a46ec0e7 --- /dev/null +++ b/packages/vue-icon/src/font-style.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import FontStyle from '@opentiny/vue-theme/svgs/font-style.svg' + +export default () => svg({ name: 'IconFontStyle', component: FontStyle, filledComponent: FontStyle })() diff --git a/packages/vue-icon/src/font-style/index.ts b/packages/vue-icon/src/font-style/index.ts deleted file mode 100644 index 5e9bf7a290..0000000000 --- a/packages/vue-icon/src/font-style/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FontStyle from '@opentiny/vue-theme/svgs/font-style.svg' - -export default () => svg({ name: 'IconFontStyle', component: FontStyle })() diff --git a/packages/vue-icon/src/font-weight.ts b/packages/vue-icon/src/font-weight.ts new file mode 100644 index 0000000000..c578a5fea4 --- /dev/null +++ b/packages/vue-icon/src/font-weight.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import FontWeight from '@opentiny/vue-theme/svgs/font-weight.svg' + +export default () => svg({ name: 'IconFontWeight', component: FontWeight, filledComponent: FontWeight })() diff --git a/packages/vue-icon/src/font-weight/index.ts b/packages/vue-icon/src/font-weight/index.ts deleted file mode 100644 index a65d8f6d94..0000000000 --- a/packages/vue-icon/src/font-weight/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FontWeight from '@opentiny/vue-theme/svgs/font-weight.svg' - -export default () => svg({ name: 'IconFontWeight', component: FontWeight })() diff --git a/packages/vue-icon/src/freeze-left.ts b/packages/vue-icon/src/freeze-left.ts new file mode 100644 index 0000000000..d18b141da1 --- /dev/null +++ b/packages/vue-icon/src/freeze-left.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import FreezeLeft from '@opentiny/vue-theme/svgs/freeze-left.svg' + +export default () => svg({ name: 'IconFreezeLeft', component: FreezeLeft, filledComponent: FreezeLeft })() diff --git a/packages/vue-icon/src/freeze-left/index.ts b/packages/vue-icon/src/freeze-left/index.ts deleted file mode 100644 index 79e8713161..0000000000 --- a/packages/vue-icon/src/freeze-left/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FreezeLeft from '@opentiny/vue-theme/svgs/freeze-left.svg' - -export default () => svg({ name: 'IconFreezeLeft', component: FreezeLeft })() diff --git a/packages/vue-icon/src/freeze-right.ts b/packages/vue-icon/src/freeze-right.ts new file mode 100644 index 0000000000..2335cc6b83 --- /dev/null +++ b/packages/vue-icon/src/freeze-right.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import FreezeRight from '@opentiny/vue-theme/svgs/freeze-right.svg' + +export default () => svg({ name: 'IconFreezeRight', component: FreezeRight, filledComponent: FreezeRight })() diff --git a/packages/vue-icon/src/freeze-right/index.ts b/packages/vue-icon/src/freeze-right/index.ts deleted file mode 100644 index 93170ae107..0000000000 --- a/packages/vue-icon/src/freeze-right/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FreezeRight from '@opentiny/vue-theme/svgs/freeze-right.svg' - -export default () => svg({ name: 'IconFreezeRight', component: FreezeRight })() diff --git a/packages/vue-icon/src/freeze.ts b/packages/vue-icon/src/freeze.ts new file mode 100644 index 0000000000..34ac7b4810 --- /dev/null +++ b/packages/vue-icon/src/freeze.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Freeze from '@opentiny/vue-theme/svgs/freeze.svg' + +export default () => svg({ name: 'IconFreeze', component: Freeze, filledComponent: Freeze })() diff --git a/packages/vue-icon/src/freeze/index.ts b/packages/vue-icon/src/freeze/index.ts deleted file mode 100644 index 4a57f6b350..0000000000 --- a/packages/vue-icon/src/freeze/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Freeze from '@opentiny/vue-theme/svgs/freeze.svg' - -export default () => svg({ name: 'IconFreeze', component: Freeze })() diff --git a/packages/vue-icon/src/frown-o.ts b/packages/vue-icon/src/frown-o.ts new file mode 100644 index 0000000000..7e5c214044 --- /dev/null +++ b/packages/vue-icon/src/frown-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import FrownO from '@opentiny/vue-theme/svgs/frown-o.svg' + +export default () => svg({ name: 'IconFrownO', component: FrownO, filledComponent: FrownO })() diff --git a/packages/vue-icon/src/frown-o/index.ts b/packages/vue-icon/src/frown-o/index.ts deleted file mode 100644 index d745a13272..0000000000 --- a/packages/vue-icon/src/frown-o/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FrownO from '@opentiny/vue-theme/svgs/frown-o.svg' - -export default () => svg({ name: 'IconFrownO', component: FrownO })() diff --git a/packages/vue-icon/src/frown.ts b/packages/vue-icon/src/frown.ts new file mode 100644 index 0000000000..c3d8f86f65 --- /dev/null +++ b/packages/vue-icon/src/frown.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Frown from '@opentiny/vue-theme/svgs/frown.svg' + +export default () => svg({ name: 'IconFrown', component: Frown, filledComponent: Frown })() diff --git a/packages/vue-icon/src/frown/index.ts b/packages/vue-icon/src/frown/index.ts deleted file mode 100644 index 4c82260e87..0000000000 --- a/packages/vue-icon/src/frown/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Frown from '@opentiny/vue-theme/svgs/frown.svg' - -export default () => svg({ name: 'IconFrown', component: Frown })() diff --git a/packages/vue-icon/src/fullscreen-left.ts b/packages/vue-icon/src/fullscreen-left.ts new file mode 100644 index 0000000000..7e026cfb52 --- /dev/null +++ b/packages/vue-icon/src/fullscreen-left.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import FullscreenLeft from '@opentiny/vue-theme/svgs/fullscreen-left.svg' + +export default () => svg({ name: 'IconFullscreenLeft', component: FullscreenLeft, filledComponent: FullscreenLeft })() diff --git a/packages/vue-icon/src/fullscreen-left/index.ts b/packages/vue-icon/src/fullscreen-left/index.ts deleted file mode 100644 index 3fce1dc299..0000000000 --- a/packages/vue-icon/src/fullscreen-left/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FullscreenLeft from '@opentiny/vue-theme/svgs/fullscreen-left.svg' - -export default () => svg({ name: 'IconFullscreenLeft', component: FullscreenLeft })() diff --git a/packages/vue-icon/src/fullscreen-right.ts b/packages/vue-icon/src/fullscreen-right.ts new file mode 100644 index 0000000000..59cbea2acb --- /dev/null +++ b/packages/vue-icon/src/fullscreen-right.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import FullscreenRight from '@opentiny/vue-theme/svgs/fullscreen-right.svg' + +export default () => + svg({ name: 'IconFullscreenRight', component: FullscreenRight, filledComponent: FullscreenRight })() diff --git a/packages/vue-icon/src/fullscreen-right/index.ts b/packages/vue-icon/src/fullscreen-right/index.ts deleted file mode 100644 index eb12f1dacd..0000000000 --- a/packages/vue-icon/src/fullscreen-right/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import FullscreenRight from '@opentiny/vue-theme/svgs/fullscreen-right.svg' - -export default () => svg({ name: 'IconFullscreenRight', component: FullscreenRight })() diff --git a/packages/vue-icon/src/fullscreen.ts b/packages/vue-icon/src/fullscreen.ts new file mode 100644 index 0000000000..d0b0cba139 --- /dev/null +++ b/packages/vue-icon/src/fullscreen.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Fullscreen from '@opentiny/vue-theme/svgs/fullscreen.svg' + +export default () => svg({ name: 'IconFullscreen', component: Fullscreen, filledComponent: Fullscreen })() diff --git a/packages/vue-icon/src/fullscreen/index.ts b/packages/vue-icon/src/fullscreen/index.ts deleted file mode 100644 index e9eff2602f..0000000000 --- a/packages/vue-icon/src/fullscreen/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Fullscreen from '@opentiny/vue-theme/svgs/fullscreen.svg' - -export default () => svg({ name: 'IconFullscreen', component: Fullscreen })() diff --git a/packages/vue-icon/src/generating.ts b/packages/vue-icon/src/generating.ts new file mode 100644 index 0000000000..4acf26992a --- /dev/null +++ b/packages/vue-icon/src/generating.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Generating from '@opentiny/vue-theme/svgs/generating.svg' + +export default () => svg({ name: 'IconGenerating', component: Generating, filledComponent: Generating })() diff --git a/packages/vue-icon/src/generating/index.ts b/packages/vue-icon/src/generating/index.ts deleted file mode 100644 index 0ec5d2003d..0000000000 --- a/packages/vue-icon/src/generating/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Generating from '@opentiny/vue-theme/svgs/generating.svg' - -export default () => svg({ name: 'IconGenerating', component: Generating })() diff --git a/packages/vue-icon/src/go-back.ts b/packages/vue-icon/src/go-back.ts new file mode 100644 index 0000000000..71ad991cc7 --- /dev/null +++ b/packages/vue-icon/src/go-back.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import GoBack from '@opentiny/vue-theme/svgs/go-back.svg' + +export default () => svg({ name: 'IconGoBack', component: GoBack, filledComponent: GoBack })() diff --git a/packages/vue-icon/src/go-back/index.ts b/packages/vue-icon/src/go-back/index.ts deleted file mode 100644 index 3bb39a671c..0000000000 --- a/packages/vue-icon/src/go-back/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import GoBack from '@opentiny/vue-theme/svgs/go-back.svg' - -export default () => svg({ name: 'IconGoBack', component: GoBack })() diff --git a/packages/vue-icon/src/grade.ts b/packages/vue-icon/src/grade.ts new file mode 100644 index 0000000000..0a123ed309 --- /dev/null +++ b/packages/vue-icon/src/grade.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Grade from '@opentiny/vue-theme/svgs/grade.svg' + +export default () => svg({ name: 'IconGrade', component: Grade, filledComponent: Grade })() diff --git a/packages/vue-icon/src/grade/index.ts b/packages/vue-icon/src/grade/index.ts deleted file mode 100644 index ac8b0cd28b..0000000000 --- a/packages/vue-icon/src/grade/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Grade from '@opentiny/vue-theme/svgs/grade.svg' - -export default () => svg({ name: 'IconGrade', component: Grade })() diff --git a/packages/vue-icon/src/grid-no-data.ts b/packages/vue-icon/src/grid-no-data.ts new file mode 100644 index 0000000000..bc6b2936a5 --- /dev/null +++ b/packages/vue-icon/src/grid-no-data.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import GridNoData from '@opentiny/vue-theme/svgs/grid-no-data.svg' + +export default () => svg({ name: 'IconGridNoData', component: GridNoData, filledComponent: GridNoData })() diff --git a/packages/vue-icon/src/grid-no-data/index.ts b/packages/vue-icon/src/grid-no-data/index.ts deleted file mode 100644 index 5e386387af..0000000000 --- a/packages/vue-icon/src/grid-no-data/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import NoData from '@opentiny/vue-theme/svgs/grid-no-data.svg' - -export default () => svg({ name: 'IconGridNoData', component: NoData })() diff --git a/packages/vue-icon/src/group-transfer.ts b/packages/vue-icon/src/group-transfer.ts new file mode 100644 index 0000000000..9c909d42a0 --- /dev/null +++ b/packages/vue-icon/src/group-transfer.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import GroupTransfer from '@opentiny/vue-theme/svgs/group-transfer.svg' + +export default () => svg({ name: 'IconGroupTransfer', component: GroupTransfer, filledComponent: GroupTransfer })() diff --git a/packages/vue-icon/src/group-transfer/index.ts b/packages/vue-icon/src/group-transfer/index.ts deleted file mode 100644 index 5e611bc469..0000000000 --- a/packages/vue-icon/src/group-transfer/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import GroupTransfer from '@opentiny/vue-theme/svgs/group-transfer.svg' - -export default () => svg({ name: 'IconGroupTransfer', component: GroupTransfer })() diff --git a/packages/vue-icon/src/group.ts b/packages/vue-icon/src/group.ts new file mode 100644 index 0000000000..ddfef73275 --- /dev/null +++ b/packages/vue-icon/src/group.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Group from '@opentiny/vue-theme/svgs/group.svg' + +export default () => svg({ name: 'IconGroup', component: Group, filledComponent: Group })() diff --git a/packages/vue-icon/src/group/index.ts b/packages/vue-icon/src/group/index.ts deleted file mode 100644 index 5be1ebece3..0000000000 --- a/packages/vue-icon/src/group/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Group from '@opentiny/vue-theme/svgs/group.svg' - -export default () => svg({ name: 'IconGroup', component: Group })() diff --git a/packages/vue-icon/src/halfchecked.ts b/packages/vue-icon/src/halfchecked.ts new file mode 100644 index 0000000000..355ebbe378 --- /dev/null +++ b/packages/vue-icon/src/halfchecked.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Halfchecked from '@opentiny/vue-theme/svgs/halfchecked.svg' + +export default () => svg({ name: 'IconHalfchecked', component: Halfchecked, filledComponent: Halfchecked })() diff --git a/packages/vue-icon/src/halfchecked/index.ts b/packages/vue-icon/src/halfchecked/index.ts deleted file mode 100644 index 0718ccef7f..0000000000 --- a/packages/vue-icon/src/halfchecked/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Halfchecked from '@opentiny/vue-theme/svgs/halfchecked.svg' - -export default () => svg({ name: 'IconHalfchecked', component: Halfchecked })() diff --git a/packages/vue-icon/src/halfselect.ts b/packages/vue-icon/src/halfselect.ts new file mode 100644 index 0000000000..f4d4a775ab --- /dev/null +++ b/packages/vue-icon/src/halfselect.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Halfselect from '@opentiny/vue-theme/svgs/halfselect.svg' + +export default () => svg({ name: 'IconHalfselect', component: Halfselect, filledComponent: Halfselect })() diff --git a/packages/vue-icon/src/halfselect/index.ts b/packages/vue-icon/src/halfselect/index.ts deleted file mode 100644 index 31ddee33c9..0000000000 --- a/packages/vue-icon/src/halfselect/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Halfselect from '@opentiny/vue-theme/svgs/halfselect.svg' - -export default () => svg({ name: 'IconHalfselect', component: Halfselect })() diff --git a/packages/vue-icon/src/heartempty.ts b/packages/vue-icon/src/heartempty.ts new file mode 100644 index 0000000000..e61b1381a0 --- /dev/null +++ b/packages/vue-icon/src/heartempty.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Heartempty from '@opentiny/vue-theme/svgs/heartempty.svg' + +export default () => svg({ name: 'IconHeartempty', component: Heartempty, filledComponent: Heartempty })() diff --git a/packages/vue-icon/src/heartempty/index.ts b/packages/vue-icon/src/heartempty/index.ts deleted file mode 100644 index 5597139201..0000000000 --- a/packages/vue-icon/src/heartempty/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Heartempty from '@opentiny/vue-theme/svgs/heartempty.svg' - -export default () => svg({ name: 'IconHeartempty', component: Heartempty })() diff --git a/packages/vue-icon/src/help-circle.ts b/packages/vue-icon/src/help-circle.ts new file mode 100644 index 0000000000..4b865f1bc1 --- /dev/null +++ b/packages/vue-icon/src/help-circle.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import HelpCircle from '@opentiny/vue-theme/svgs/help-circle.svg' + +export default () => svg({ name: 'IconHelpCircle', component: HelpCircle, filledComponent: HelpCircle })() diff --git a/packages/vue-icon/src/help-circle/index.ts b/packages/vue-icon/src/help-circle/index.ts deleted file mode 100644 index 8887348adb..0000000000 --- a/packages/vue-icon/src/help-circle/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import HelpCircle from '@opentiny/vue-theme/svgs/help-circle.svg' - -export default () => svg({ name: 'IconHelpCircle', component: HelpCircle })() diff --git a/packages/vue-icon/src/help-query.ts b/packages/vue-icon/src/help-query.ts new file mode 100644 index 0000000000..2d9f48a597 --- /dev/null +++ b/packages/vue-icon/src/help-query.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import HelpQuery from '@opentiny/vue-theme/svgs/help-query.svg' + +export default () => svg({ name: 'IconHelpQuery', component: HelpQuery, filledComponent: HelpQuery })() diff --git a/packages/vue-icon/src/help-query/index.ts b/packages/vue-icon/src/help-query/index.ts deleted file mode 100644 index 57c8fa32fa..0000000000 --- a/packages/vue-icon/src/help-query/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import HelpQuery from '@opentiny/vue-theme/svgs/help-query.svg' - -export default () => svg({ name: 'IconHelpQuery', component: HelpQuery })() diff --git a/packages/vue-icon/src/help-solid.ts b/packages/vue-icon/src/help-solid.ts new file mode 100644 index 0000000000..a51ad4c9cc --- /dev/null +++ b/packages/vue-icon/src/help-solid.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import HelpSolid from '@opentiny/vue-theme/svgs/help-solid.svg' + +export default () => svg({ name: 'IconHelpSolid', component: HelpSolid, filledComponent: HelpSolid })() diff --git a/packages/vue-icon/src/help-solid/index.ts b/packages/vue-icon/src/help-solid/index.ts deleted file mode 100644 index dfb58198c3..0000000000 --- a/packages/vue-icon/src/help-solid/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import HelpSolid from '@opentiny/vue-theme/svgs/help-solid.svg' - -export default () => svg({ name: 'IconHelpSolid', component: HelpSolid })() diff --git a/packages/vue-icon/src/help.ts b/packages/vue-icon/src/help.ts new file mode 100644 index 0000000000..e1ba605176 --- /dev/null +++ b/packages/vue-icon/src/help.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Help from '@opentiny/vue-theme/svgs/help.svg' + +export default () => svg({ name: 'IconHelp', component: Help, filledComponent: Help })() diff --git a/packages/vue-icon/src/help/index.ts b/packages/vue-icon/src/help/index.ts deleted file mode 100644 index 57ff09c9c5..0000000000 --- a/packages/vue-icon/src/help/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Help from '@opentiny/vue-theme/svgs/help.svg' - -export default () => svg({ name: 'IconHelp', component: Help })() diff --git a/packages/vue-icon/src/helpful.ts b/packages/vue-icon/src/helpful.ts new file mode 100644 index 0000000000..730557ed28 --- /dev/null +++ b/packages/vue-icon/src/helpful.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Helpful from '@opentiny/vue-theme/svgs/helpful.svg' + +export default () => svg({ name: 'IconHelpful', component: Helpful, filledComponent: Helpful })() diff --git a/packages/vue-icon/src/helpful/index.ts b/packages/vue-icon/src/helpful/index.ts deleted file mode 100644 index bf31ab60f2..0000000000 --- a/packages/vue-icon/src/helpful/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Helpful from '@opentiny/vue-theme/svgs/helpful.svg' - -export default () => svg({ name: 'IconHelpful', component: Helpful })() diff --git a/packages/vue-icon/src/hide-left.ts b/packages/vue-icon/src/hide-left.ts new file mode 100644 index 0000000000..d45cf28779 --- /dev/null +++ b/packages/vue-icon/src/hide-left.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import HideLeft from '@opentiny/vue-theme/svgs/hide-left.svg' + +export default () => svg({ name: 'IconHideLeft', component: HideLeft, filledComponent: HideLeft })() diff --git a/packages/vue-icon/src/hide-left/index.ts b/packages/vue-icon/src/hide-left/index.ts deleted file mode 100644 index df19933ed5..0000000000 --- a/packages/vue-icon/src/hide-left/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import HideLeft from '@opentiny/vue-theme/svgs/hide-left.svg' - -export default () => svg({ name: 'IconHideLeft', component: HideLeft })() diff --git a/packages/vue-icon/src/hide-right.ts b/packages/vue-icon/src/hide-right.ts new file mode 100644 index 0000000000..e9b0152a3a --- /dev/null +++ b/packages/vue-icon/src/hide-right.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import HideRight from '@opentiny/vue-theme/svgs/hide-right.svg' + +export default () => svg({ name: 'IconHideRight', component: HideRight, filledComponent: HideRight })() diff --git a/packages/vue-icon/src/hide-right/index.ts b/packages/vue-icon/src/hide-right/index.ts deleted file mode 100644 index 16697091f1..0000000000 --- a/packages/vue-icon/src/hide-right/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import HideRight from '@opentiny/vue-theme/svgs/hide-right.svg' - -export default () => svg({ name: 'IconHideRight', component: HideRight })() diff --git a/packages/vue-icon/src/hide-topleft.ts b/packages/vue-icon/src/hide-topleft.ts new file mode 100644 index 0000000000..496ebf50dd --- /dev/null +++ b/packages/vue-icon/src/hide-topleft.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import HideTopleft from '@opentiny/vue-theme/svgs/hide-topleft.svg' + +export default () => svg({ name: 'IconHideTopleft', component: HideTopleft, filledComponent: HideTopleft })() diff --git a/packages/vue-icon/src/hide-topleft/index.ts b/packages/vue-icon/src/hide-topleft/index.ts deleted file mode 100644 index 90ef6f50ae..0000000000 --- a/packages/vue-icon/src/hide-topleft/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import HideTopleft from '@opentiny/vue-theme/svgs/hide-topleft.svg' - -export default () => svg({ name: 'IconHideTopleft', component: HideTopleft })() diff --git a/packages/vue-icon/src/history-record.ts b/packages/vue-icon/src/history-record.ts new file mode 100644 index 0000000000..2db6569ace --- /dev/null +++ b/packages/vue-icon/src/history-record.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import HistoryRecord from '@opentiny/vue-theme/svgs/history-record.svg' + +export default () => svg({ name: 'IconHistoryRecord', component: HistoryRecord, filledComponent: HistoryRecord })() diff --git a/packages/vue-icon/src/history-record/index.ts b/packages/vue-icon/src/history-record/index.ts deleted file mode 100644 index 9d03e5409d..0000000000 --- a/packages/vue-icon/src/history-record/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import HistoryRecord from '@opentiny/vue-theme/svgs/history-record.svg' - -export default () => svg({ name: 'IconHistoryRecord', component: HistoryRecord })() diff --git a/packages/vue-icon/src/image-add.ts b/packages/vue-icon/src/image-add.ts new file mode 100644 index 0000000000..3d2ef71da0 --- /dev/null +++ b/packages/vue-icon/src/image-add.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ImageAdd from '@opentiny/vue-theme/svgs/image-add.svg' + +export default () => svg({ name: 'IconImageAdd', component: ImageAdd, filledComponent: ImageAdd })() diff --git a/packages/vue-icon/src/image-add/index.ts b/packages/vue-icon/src/image-add/index.ts deleted file mode 100644 index 024e63e932..0000000000 --- a/packages/vue-icon/src/image-add/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import ImageAdd from '@opentiny/vue-theme/svgs/image-add.svg' - -export default () => svg({ name: 'IconImageAdd', component: ImageAdd })() diff --git a/packages/vue-icon/src/image-error.ts b/packages/vue-icon/src/image-error.ts new file mode 100644 index 0000000000..00c766905a --- /dev/null +++ b/packages/vue-icon/src/image-error.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ImageError from '@opentiny/vue-theme/svgs/image-error.svg' + +export default () => svg({ name: 'IconImageError', component: ImageError, filledComponent: ImageError })() diff --git a/packages/vue-icon/src/image-error/index.ts b/packages/vue-icon/src/image-error/index.ts deleted file mode 100644 index 163dab8b56..0000000000 --- a/packages/vue-icon/src/image-error/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import ImageError from '@opentiny/vue-theme/svgs/image-error.svg' - -export default () => svg({ name: 'IconImageError', component: ImageError })() diff --git a/packages/vue-icon/src/import.ts b/packages/vue-icon/src/import.ts new file mode 100644 index 0000000000..9e53e72861 --- /dev/null +++ b/packages/vue-icon/src/import.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Import from '@opentiny/vue-theme/svgs/import.svg' + +export default () => svg({ name: 'IconImport', component: Import, filledComponent: Import })() diff --git a/packages/vue-icon/src/import/index.ts b/packages/vue-icon/src/import/index.ts deleted file mode 100644 index ad576237f2..0000000000 --- a/packages/vue-icon/src/import/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Import from '@opentiny/vue-theme/svgs/import.svg' - -export default () => svg({ name: 'IconImport', component: Import })() diff --git a/packages/vue-icon/src/info-circle.ts b/packages/vue-icon/src/info-circle.ts new file mode 100644 index 0000000000..7e2068f307 --- /dev/null +++ b/packages/vue-icon/src/info-circle.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import InfoCircle from '@opentiny/vue-theme/svgs/info-circle.svg' + +export default () => svg({ name: 'IconInfoCircle', component: InfoCircle, filledComponent: InfoCircle })() diff --git a/packages/vue-icon/src/info-circle/index.ts b/packages/vue-icon/src/info-circle/index.ts deleted file mode 100644 index 29879eddd1..0000000000 --- a/packages/vue-icon/src/info-circle/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import InfoCircle from '@opentiny/vue-theme/svgs/info-circle.svg' - -export default () => svg({ name: 'IconInfoCircle', component: InfoCircle })() diff --git a/packages/vue-icon/src/info-solid.ts b/packages/vue-icon/src/info-solid.ts new file mode 100644 index 0000000000..603fe833ae --- /dev/null +++ b/packages/vue-icon/src/info-solid.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import InfoSolid from '@opentiny/vue-theme/svgs/info-solid.svg' + +export default () => svg({ name: 'IconInfoSolid', component: InfoSolid, filledComponent: InfoSolid })() diff --git a/packages/vue-icon/src/info-solid/index.ts b/packages/vue-icon/src/info-solid/index.ts deleted file mode 100644 index dbb8863306..0000000000 --- a/packages/vue-icon/src/info-solid/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import InfoSolid from '@opentiny/vue-theme/svgs/info-solid.svg' - -export default () => svg({ name: 'IconInfoSolid', component: InfoSolid })() diff --git a/packages/vue-icon/src/info.ts b/packages/vue-icon/src/info.ts new file mode 100644 index 0000000000..0d0da8af1d --- /dev/null +++ b/packages/vue-icon/src/info.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Info from '@opentiny/vue-theme/svgs/info.svg' + +export default () => svg({ name: 'IconInfo', component: Info, filledComponent: Info })() diff --git a/packages/vue-icon/src/info/index.ts b/packages/vue-icon/src/info/index.ts deleted file mode 100644 index b947f50543..0000000000 --- a/packages/vue-icon/src/info/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Info from '@opentiny/vue-theme/svgs/info.svg' - -export default () => svg({ name: 'IconInfo', component: Info })() diff --git a/packages/vue-icon/src/information.ts b/packages/vue-icon/src/information.ts new file mode 100644 index 0000000000..e52e5109a8 --- /dev/null +++ b/packages/vue-icon/src/information.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Information from '@opentiny/vue-theme/svgs/information.svg' + +export default () => svg({ name: 'IconInformation', component: Information, filledComponent: Information })() diff --git a/packages/vue-icon/src/information/index.ts b/packages/vue-icon/src/information/index.ts deleted file mode 100644 index 4afeafcfbc..0000000000 --- a/packages/vue-icon/src/information/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Information from '@opentiny/vue-theme/svgs/information.svg' - -export default () => svg({ name: 'IconInformation', component: Information })() diff --git a/packages/vue-icon/src/item-planning-properties.ts b/packages/vue-icon/src/item-planning-properties.ts new file mode 100644 index 0000000000..0dff8bf02a --- /dev/null +++ b/packages/vue-icon/src/item-planning-properties.ts @@ -0,0 +1,9 @@ +import { svg } from '@opentiny/vue-common' +import ItemPlanningProperties from '@opentiny/vue-theme/svgs/item-planning-properties.svg' + +export default () => + svg({ + name: 'IconItemPlanningProperties', + component: ItemPlanningProperties, + filledComponent: ItemPlanningProperties + })() diff --git a/packages/vue-icon/src/item-planning-properties/index.ts b/packages/vue-icon/src/item-planning-properties/index.ts deleted file mode 100644 index e24a693f89..0000000000 --- a/packages/vue-icon/src/item-planning-properties/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ItemPlanningProperties from '@opentiny/vue-theme/svgs/item-planning-properties.svg' - -export default () => svg({ name: 'IconItemPlanningProperties', component: ItemPlanningProperties })() diff --git a/packages/vue-icon/src/js.ts b/packages/vue-icon/src/js.ts new file mode 100644 index 0000000000..82e5982cf0 --- /dev/null +++ b/packages/vue-icon/src/js.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Js from '@opentiny/vue-theme/svgs/js.svg' + +export default () => svg({ name: 'IconJs', component: Js, filledComponent: Js })() diff --git a/packages/vue-icon/src/js/index.ts b/packages/vue-icon/src/js/index.ts deleted file mode 100644 index b6babb59ce..0000000000 --- a/packages/vue-icon/src/js/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Js from '@opentiny/vue-theme/svgs/js.svg' - -export default () => svg({ name: 'IconJs', component: Js })() diff --git a/packages/vue-icon/src/jusitfy-center.ts b/packages/vue-icon/src/jusitfy-center.ts new file mode 100644 index 0000000000..d80777a4d1 --- /dev/null +++ b/packages/vue-icon/src/jusitfy-center.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import JusitfyCenter from '@opentiny/vue-theme/svgs/jusitfy-center.svg' + +export default () => svg({ name: 'IconJusitfyCenter', component: JusitfyCenter, filledComponent: JusitfyCenter })() diff --git a/packages/vue-icon/src/jusitfy-center/index.ts b/packages/vue-icon/src/jusitfy-center/index.ts deleted file mode 100644 index 0da0d9f952..0000000000 --- a/packages/vue-icon/src/jusitfy-center/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import JusitfyCenter from '@opentiny/vue-theme/svgs/jusitfy-center.svg' - -export default () => svg({ name: 'IconJusitfyCenter', component: JusitfyCenter })() diff --git a/packages/vue-icon/src/jusitfy-flex-end.ts b/packages/vue-icon/src/jusitfy-flex-end.ts new file mode 100644 index 0000000000..07fdd5bc6b --- /dev/null +++ b/packages/vue-icon/src/jusitfy-flex-end.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import JusitfyFlexEnd from '@opentiny/vue-theme/svgs/jusitfy-flex-end.svg' + +export default () => svg({ name: 'IconJusitfyFlexEnd', component: JusitfyFlexEnd, filledComponent: JusitfyFlexEnd })() diff --git a/packages/vue-icon/src/jusitfy-flex-end/index.ts b/packages/vue-icon/src/jusitfy-flex-end/index.ts deleted file mode 100644 index c07e9e211b..0000000000 --- a/packages/vue-icon/src/jusitfy-flex-end/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import JusitfyFlexEnd from '@opentiny/vue-theme/svgs/jusitfy-flex-end.svg' - -export default () => svg({ name: 'IconJusitfyFlexEnd', component: JusitfyFlexEnd })() diff --git a/packages/vue-icon/src/jusitfy-space-around.ts b/packages/vue-icon/src/jusitfy-space-around.ts new file mode 100644 index 0000000000..69667f1a35 --- /dev/null +++ b/packages/vue-icon/src/jusitfy-space-around.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import JusitfySpaceAround from '@opentiny/vue-theme/svgs/jusitfy-space-around.svg' + +export default () => + svg({ name: 'IconJusitfySpaceAround', component: JusitfySpaceAround, filledComponent: JusitfySpaceAround })() diff --git a/packages/vue-icon/src/jusitfy-space-around/index.ts b/packages/vue-icon/src/jusitfy-space-around/index.ts deleted file mode 100644 index 9639a02bc0..0000000000 --- a/packages/vue-icon/src/jusitfy-space-around/index.ts +++ /dev/null @@ -1,19 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import JusitfySpaceAround from '@opentiny/vue-theme/svgs/jusitfy-space-around.svg' - -export default () => - svg({ - name: 'IconJusitfySpaceAround', - component: JusitfySpaceAround - })() diff --git a/packages/vue-icon/src/jusitfy-space-between.ts b/packages/vue-icon/src/jusitfy-space-between.ts new file mode 100644 index 0000000000..23093f6363 --- /dev/null +++ b/packages/vue-icon/src/jusitfy-space-between.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import JusitfySpaceBetween from '@opentiny/vue-theme/svgs/jusitfy-space-between.svg' + +export default () => + svg({ name: 'IconJusitfySpaceBetween', component: JusitfySpaceBetween, filledComponent: JusitfySpaceBetween })() diff --git a/packages/vue-icon/src/jusitfy-space-between/index.ts b/packages/vue-icon/src/jusitfy-space-between/index.ts deleted file mode 100644 index f448bf6c28..0000000000 --- a/packages/vue-icon/src/jusitfy-space-between/index.ts +++ /dev/null @@ -1,19 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import JusitfySpaceBetween from '@opentiny/vue-theme/svgs/jusitfy-space-between.svg' - -export default () => - svg({ - name: 'IconJusitfySpaceBetween', - component: JusitfySpaceBetween - })() diff --git a/packages/vue-icon/src/justitfy-flex-start.ts b/packages/vue-icon/src/justitfy-flex-start.ts new file mode 100644 index 0000000000..e167ba5dba --- /dev/null +++ b/packages/vue-icon/src/justitfy-flex-start.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import JustitfyFlexStart from '@opentiny/vue-theme/svgs/justitfy-flex-start.svg' + +export default () => + svg({ name: 'IconJustitfyFlexStart', component: JustitfyFlexStart, filledComponent: JustitfyFlexStart })() diff --git a/packages/vue-icon/src/justitfy-flex-start/index.ts b/packages/vue-icon/src/justitfy-flex-start/index.ts deleted file mode 100644 index 0ba6cff8e7..0000000000 --- a/packages/vue-icon/src/justitfy-flex-start/index.ts +++ /dev/null @@ -1,19 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import JustitfyFlexStart from '@opentiny/vue-theme/svgs/justitfy-flex-start.svg' - -export default () => - svg({ - name: 'IconJustitfyFlexStart', - component: JustitfyFlexStart - })() diff --git a/packages/vue-icon/src/language.ts b/packages/vue-icon/src/language.ts new file mode 100644 index 0000000000..e00de5be41 --- /dev/null +++ b/packages/vue-icon/src/language.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Language from '@opentiny/vue-theme/svgs/language.svg' + +export default () => svg({ name: 'IconLanguage', component: Language, filledComponent: Language })() diff --git a/packages/vue-icon/src/language/index.ts b/packages/vue-icon/src/language/index.ts deleted file mode 100644 index db35fd735c..0000000000 --- a/packages/vue-icon/src/language/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Language from '@opentiny/vue-theme/svgs/language.svg' - -export default () => svg({ name: 'IconLanguage', component: Language })() diff --git a/packages/vue-icon/src/leave.ts b/packages/vue-icon/src/leave.ts new file mode 100644 index 0000000000..d1d96bd6f2 --- /dev/null +++ b/packages/vue-icon/src/leave.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Leave from '@opentiny/vue-theme/svgs/leave.svg' + +export default () => svg({ name: 'IconLeave', component: Leave, filledComponent: Leave })() diff --git a/packages/vue-icon/src/leave/index.ts b/packages/vue-icon/src/leave/index.ts deleted file mode 100644 index e8665eb332..0000000000 --- a/packages/vue-icon/src/leave/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Leave from '@opentiny/vue-theme/svgs/leave.svg' - -export default () => svg({ name: 'IconLeave', component: Leave })() diff --git a/packages/vue-icon/src/left-frozen.ts b/packages/vue-icon/src/left-frozen.ts new file mode 100644 index 0000000000..384c57b270 --- /dev/null +++ b/packages/vue-icon/src/left-frozen.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import LeftFrozen from '@opentiny/vue-theme/svgs/left-frozen.svg' + +export default () => svg({ name: 'IconLeftFrozen', component: LeftFrozen, filledComponent: LeftFrozen })() diff --git a/packages/vue-icon/src/left-frozen/index.ts b/packages/vue-icon/src/left-frozen/index.ts deleted file mode 100644 index 4f9c970a5f..0000000000 --- a/packages/vue-icon/src/left-frozen/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import LeftFrozen from '@opentiny/vue-theme/svgs/left-frozen.svg' - -export default () => svg({ name: 'IconLeftFrozen', component: LeftFrozen })() diff --git a/packages/vue-icon/src/left-o.ts b/packages/vue-icon/src/left-o.ts new file mode 100644 index 0000000000..6a92432f5b --- /dev/null +++ b/packages/vue-icon/src/left-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import LeftO from '@opentiny/vue-theme/svgs/left-o.svg' + +export default () => svg({ name: 'IconLeftO', component: LeftO, filledComponent: LeftO })() diff --git a/packages/vue-icon/src/left-o/index.ts b/packages/vue-icon/src/left-o/index.ts deleted file mode 100644 index b219afd4bb..0000000000 --- a/packages/vue-icon/src/left-o/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import LeftO from '@opentiny/vue-theme/svgs/left-o.svg' - -export default () => svg({ name: 'IconLeftO', component: LeftO })() diff --git a/packages/vue-icon/src/left-ward-arrow.ts b/packages/vue-icon/src/left-ward-arrow.ts new file mode 100644 index 0000000000..8ad610f943 --- /dev/null +++ b/packages/vue-icon/src/left-ward-arrow.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import LeftWardArrow from '@opentiny/vue-theme/svgs/left-ward-arrow.svg' + +export default () => svg({ name: 'IconLeftWardArrow', component: LeftWardArrow, filledComponent: LeftWardArrow })() diff --git a/packages/vue-icon/src/left-ward-arrow/index.ts b/packages/vue-icon/src/left-ward-arrow/index.ts deleted file mode 100644 index 6be1918d03..0000000000 --- a/packages/vue-icon/src/left-ward-arrow/index.ts +++ /dev/null @@ -1,16 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ - -import { svg } from '@opentiny/vue-common' -import LeftWardArrow from '@opentiny/vue-theme/svgs/left-ward-arrow.svg' - -export default () => svg({ name: 'IconLeftWardArrow', component: LeftWardArrow })() diff --git a/packages/vue-icon/src/left-ward.ts b/packages/vue-icon/src/left-ward.ts new file mode 100644 index 0000000000..caa047b89c --- /dev/null +++ b/packages/vue-icon/src/left-ward.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import LeftWard from '@opentiny/vue-theme/svgs/left-ward.svg' + +export default () => svg({ name: 'IconLeftWard', component: LeftWard, filledComponent: LeftWard })() diff --git a/packages/vue-icon/src/left-ward/index.ts b/packages/vue-icon/src/left-ward/index.ts deleted file mode 100644 index 5c4642c248..0000000000 --- a/packages/vue-icon/src/left-ward/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import LeftWard from '@opentiny/vue-theme/svgs/left-ward.svg' - -export default () => svg({ name: 'IconLeftWard', component: LeftWard })() diff --git a/packages/vue-icon/src/left.ts b/packages/vue-icon/src/left.ts new file mode 100644 index 0000000000..cae11fead1 --- /dev/null +++ b/packages/vue-icon/src/left.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Left from '@opentiny/vue-theme/svgs/left.svg' + +export default () => svg({ name: 'IconLeft', component: Left, filledComponent: Left })() diff --git a/packages/vue-icon/src/left/index.ts b/packages/vue-icon/src/left/index.ts deleted file mode 100644 index 90d5378efb..0000000000 --- a/packages/vue-icon/src/left/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Left from '@opentiny/vue-theme/svgs/left.svg' - -export default () => svg({ name: 'IconLeft', component: Left })() diff --git a/packages/vue-icon/src/lightning-line.ts b/packages/vue-icon/src/lightning-line.ts new file mode 100644 index 0000000000..ba1a3e9efb --- /dev/null +++ b/packages/vue-icon/src/lightning-line.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import LightningLine from '@opentiny/vue-theme/svgs/lightning-line.svg' + +export default () => svg({ name: 'IconLightningLine', component: LightningLine, filledComponent: LightningLine })() diff --git a/packages/vue-icon/src/lightning-line/index.ts b/packages/vue-icon/src/lightning-line/index.ts deleted file mode 100644 index 71793112b1..0000000000 --- a/packages/vue-icon/src/lightning-line/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import LightningLine from '@opentiny/vue-theme/svgs/lightning-line.svg' - -export default () => svg({ name: 'IconLightningLine', component: LightningLine })() diff --git a/packages/vue-icon/src/lightning.ts b/packages/vue-icon/src/lightning.ts new file mode 100644 index 0000000000..1e114808f6 --- /dev/null +++ b/packages/vue-icon/src/lightning.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Lightning from '@opentiny/vue-theme/svgs/lightning.svg' + +export default () => svg({ name: 'IconLightning', component: Lightning, filledComponent: Lightning })() diff --git a/packages/vue-icon/src/lightning/index.ts b/packages/vue-icon/src/lightning/index.ts deleted file mode 100644 index 850d079de1..0000000000 --- a/packages/vue-icon/src/lightning/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Lightning from '@opentiny/vue-theme/svgs/lightning-line.svg' - -export default () => svg({ name: 'IconLightning', component: Lightning })() diff --git a/packages/vue-icon/src/line-chart.ts b/packages/vue-icon/src/line-chart.ts new file mode 100644 index 0000000000..cc443c6fe2 --- /dev/null +++ b/packages/vue-icon/src/line-chart.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import LineChart from '@opentiny/vue-theme/svgs/line-chart.svg' + +export default () => svg({ name: 'IconLineChart', component: LineChart, filledComponent: LineChart })() diff --git a/packages/vue-icon/src/line-chart/index.ts b/packages/vue-icon/src/line-chart/index.ts deleted file mode 100644 index ff6434d659..0000000000 --- a/packages/vue-icon/src/line-chart/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import LineChart from '@opentiny/vue-theme/svgs/line-chart.svg' - -export default () => svg({ name: 'IconLineChart', component: LineChart })() diff --git a/packages/vue-icon/src/line-height.ts b/packages/vue-icon/src/line-height.ts new file mode 100644 index 0000000000..1462d3fb6a --- /dev/null +++ b/packages/vue-icon/src/line-height.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import LineHeight from '@opentiny/vue-theme/svgs/line-height.svg' + +export default () => svg({ name: 'IconLineHeight', component: LineHeight, filledComponent: LineHeight })() diff --git a/packages/vue-icon/src/line-height/index.ts b/packages/vue-icon/src/line-height/index.ts deleted file mode 100644 index d40914577c..0000000000 --- a/packages/vue-icon/src/line-height/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import LineHeight from '@opentiny/vue-theme/svgs/line-height.svg' - -export default () => svg({ name: 'IconLineHeight', component: LineHeight })() diff --git a/packages/vue-icon/src/line-throught.ts b/packages/vue-icon/src/line-throught.ts new file mode 100644 index 0000000000..fdb495b370 --- /dev/null +++ b/packages/vue-icon/src/line-throught.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import LineThrought from '@opentiny/vue-theme/svgs/line-throught.svg' + +export default () => svg({ name: 'IconLineThrought', component: LineThrought, filledComponent: LineThrought })() diff --git a/packages/vue-icon/src/line-throught/index.ts b/packages/vue-icon/src/line-throught/index.ts deleted file mode 100644 index 9bae80cf1c..0000000000 --- a/packages/vue-icon/src/line-throught/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import LineThrought from '@opentiny/vue-theme/svgs/line-throught.svg' - -export default () => svg({ name: 'IconLineThrought', component: LineThrought })() diff --git a/packages/vue-icon/src/link.ts b/packages/vue-icon/src/link.ts new file mode 100644 index 0000000000..d5e21e89ee --- /dev/null +++ b/packages/vue-icon/src/link.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Link from '@opentiny/vue-theme/svgs/link.svg' + +export default () => svg({ name: 'IconLink', component: Link, filledComponent: Link })() diff --git a/packages/vue-icon/src/link/index.ts b/packages/vue-icon/src/link/index.ts deleted file mode 100644 index f83cdc8c64..0000000000 --- a/packages/vue-icon/src/link/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Link from '@opentiny/vue-theme/svgs/link.svg' - -export default () => svg({ name: 'IconLink', component: Link })() diff --git a/packages/vue-icon/src/list-mode.ts b/packages/vue-icon/src/list-mode.ts new file mode 100644 index 0000000000..04c4b8c294 --- /dev/null +++ b/packages/vue-icon/src/list-mode.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ListMode from '@opentiny/vue-theme/svgs/list-mode.svg' + +export default () => svg({ name: 'IconListMode', component: ListMode, filledComponent: ListMode })() diff --git a/packages/vue-icon/src/list-mode/index.ts b/packages/vue-icon/src/list-mode/index.ts deleted file mode 100644 index 68e4ce2a1a..0000000000 --- a/packages/vue-icon/src/list-mode/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import ListMode from '@opentiny/vue-theme/svgs/list-mode.svg' - -export default () => svg({ name: 'IconListMode', component: ListMode })() diff --git a/packages/vue-icon/src/loading-shadow.ts b/packages/vue-icon/src/loading-shadow.ts new file mode 100644 index 0000000000..4bb36b7e79 --- /dev/null +++ b/packages/vue-icon/src/loading-shadow.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import LoadingShadow from '@opentiny/vue-theme/svgs/loading-shadow.svg' + +export default () => svg({ name: 'IconLoadingShadow', component: LoadingShadow, filledComponent: LoadingShadow })() diff --git a/packages/vue-icon/src/loading-shadow/index.ts b/packages/vue-icon/src/loading-shadow/index.ts deleted file mode 100644 index 031010d7d4..0000000000 --- a/packages/vue-icon/src/loading-shadow/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import LoadingShadow from '@opentiny/vue-theme/svgs/loading-shadow.svg' - -export default () => svg({ name: 'IconLoadingShadow', component: LoadingShadow })() diff --git a/packages/vue-icon/src/loading.ts b/packages/vue-icon/src/loading.ts new file mode 100644 index 0000000000..1936751227 --- /dev/null +++ b/packages/vue-icon/src/loading.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Loading from '@opentiny/vue-theme/svgs/loading.svg' + +export default () => svg({ name: 'IconLoading', component: Loading, filledComponent: Loading })() diff --git a/packages/vue-icon/src/loading/index.ts b/packages/vue-icon/src/loading/index.ts deleted file mode 100644 index 792feaeed6..0000000000 --- a/packages/vue-icon/src/loading/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Loading from '@opentiny/vue-theme/svgs/loading.svg' - -export default () => svg({ name: 'IconLoading', component: Loading })() diff --git a/packages/vue-icon/src/locale-panel.ts b/packages/vue-icon/src/locale-panel.ts new file mode 100644 index 0000000000..49e32b35f0 --- /dev/null +++ b/packages/vue-icon/src/locale-panel.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import LocalePanel from '@opentiny/vue-theme/svgs/locale-panel.svg' + +export default () => svg({ name: 'IconLocalePanel', component: LocalePanel, filledComponent: LocalePanel })() diff --git a/packages/vue-icon/src/locale-panel/index.ts b/packages/vue-icon/src/locale-panel/index.ts deleted file mode 100644 index b6a876b1ba..0000000000 --- a/packages/vue-icon/src/locale-panel/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import LocalePanel from '@opentiny/vue-theme/svgs/locale-panel.svg' - -export default () => svg({ name: 'IconLocalePanel', component: LocalePanel })() diff --git a/packages/vue-icon/src/location-number.ts b/packages/vue-icon/src/location-number.ts new file mode 100644 index 0000000000..c3d2cd013d --- /dev/null +++ b/packages/vue-icon/src/location-number.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import LocationNumber from '@opentiny/vue-theme/svgs/location-number.svg' + +export default () => svg({ name: 'IconLocationNumber', component: LocationNumber, filledComponent: LocationNumber })() diff --git a/packages/vue-icon/src/location-number/index.ts b/packages/vue-icon/src/location-number/index.ts deleted file mode 100644 index 9eaa97ddfd..0000000000 --- a/packages/vue-icon/src/location-number/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import LocationNumber from '@opentiny/vue-theme/svgs/location-number.svg' - -export default () => svg({ name: 'IconLocationNumber', component: LocationNumber })() diff --git a/packages/vue-icon/src/location.ts b/packages/vue-icon/src/location.ts new file mode 100644 index 0000000000..f1f130ca51 --- /dev/null +++ b/packages/vue-icon/src/location.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Location from '@opentiny/vue-theme/svgs/location.svg' + +export default () => svg({ name: 'IconLocation', component: Location, filledComponent: Location })() diff --git a/packages/vue-icon/src/location/index.ts b/packages/vue-icon/src/location/index.ts deleted file mode 100644 index f04b782299..0000000000 --- a/packages/vue-icon/src/location/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Location from '@opentiny/vue-theme/svgs/location.svg' - -export default () => svg({ name: 'IconLocation', component: Location })() diff --git a/packages/vue-icon/src/lock.ts b/packages/vue-icon/src/lock.ts new file mode 100644 index 0000000000..ddf83a4bc0 --- /dev/null +++ b/packages/vue-icon/src/lock.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Lock from '@opentiny/vue-theme/svgs/lock.svg' + +export default () => svg({ name: 'IconLock', component: Lock, filledComponent: Lock })() diff --git a/packages/vue-icon/src/lock/index.ts b/packages/vue-icon/src/lock/index.ts deleted file mode 100644 index 22479e9331..0000000000 --- a/packages/vue-icon/src/lock/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Lock from '@opentiny/vue-theme/svgs/lock.svg' - -export default () => svg({ name: 'IconLock', component: Lock })() diff --git a/packages/vue-icon/src/mail-content.ts b/packages/vue-icon/src/mail-content.ts new file mode 100644 index 0000000000..c99e45aa86 --- /dev/null +++ b/packages/vue-icon/src/mail-content.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import MailContent from '@opentiny/vue-theme/svgs/mail-content.svg' + +export default () => svg({ name: 'IconMailContent', component: MailContent, filledComponent: MailContent })() diff --git a/packages/vue-icon/src/mail-content/index.ts b/packages/vue-icon/src/mail-content/index.ts deleted file mode 100644 index 8f4f367900..0000000000 --- a/packages/vue-icon/src/mail-content/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import MailContent from '@opentiny/vue-theme/svgs/mail-content.svg' - -export default () => svg({ name: 'IconMailContent', component: MailContent })() diff --git a/packages/vue-icon/src/mail.ts b/packages/vue-icon/src/mail.ts new file mode 100644 index 0000000000..eda0ef8471 --- /dev/null +++ b/packages/vue-icon/src/mail.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Mail from '@opentiny/vue-theme/svgs/mail.svg' + +export default () => svg({ name: 'IconMail', component: Mail, filledComponent: Mail })() diff --git a/packages/vue-icon/src/mail/index.ts b/packages/vue-icon/src/mail/index.ts deleted file mode 100644 index b9bfe3c917..0000000000 --- a/packages/vue-icon/src/mail/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Mail from '@opentiny/vue-theme/svgs/mail.svg' - -export default () => svg({ name: 'IconMail', component: Mail })() diff --git a/packages/vue-icon/src/main-freight-settled.ts b/packages/vue-icon/src/main-freight-settled.ts new file mode 100644 index 0000000000..a1f35c6ac9 --- /dev/null +++ b/packages/vue-icon/src/main-freight-settled.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import MainFreightSettled from '@opentiny/vue-theme/svgs/main-freight-settled.svg' + +export default () => + svg({ name: 'IconMainFreightSettled', component: MainFreightSettled, filledComponent: MainFreightSettled })() diff --git a/packages/vue-icon/src/main-freight-settled/index.ts b/packages/vue-icon/src/main-freight-settled/index.ts deleted file mode 100644 index d9617ea3ce..0000000000 --- a/packages/vue-icon/src/main-freight-settled/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import MainFreightSettled from '@opentiny/vue-theme/svgs/main-freight-settled.svg' - -export default () => svg({ name: 'IconMainFreightSettled', component: MainFreightSettled })() diff --git a/packages/vue-icon/src/main-freight-to-be-settled.ts b/packages/vue-icon/src/main-freight-to-be-settled.ts new file mode 100644 index 0000000000..b9e9c82522 --- /dev/null +++ b/packages/vue-icon/src/main-freight-to-be-settled.ts @@ -0,0 +1,9 @@ +import { svg } from '@opentiny/vue-common' +import MainFreightToBeSettled from '@opentiny/vue-theme/svgs/main-freight-to-be-settled.svg' + +export default () => + svg({ + name: 'IconMainFreightToBeSettled', + component: MainFreightToBeSettled, + filledComponent: MainFreightToBeSettled + })() diff --git a/packages/vue-icon/src/main-freight-to-be-settled/index.ts b/packages/vue-icon/src/main-freight-to-be-settled/index.ts deleted file mode 100644 index 6196df2bde..0000000000 --- a/packages/vue-icon/src/main-freight-to-be-settled/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import MainFreightToBeSettled from '@opentiny/vue-theme/svgs/main-freight-to-be-settled.svg' - -export default () => svg({ name: 'IconMainFreightToBeSettled', component: MainFreightToBeSettled })() diff --git a/packages/vue-icon/src/maintain-inspection-records.ts b/packages/vue-icon/src/maintain-inspection-records.ts new file mode 100644 index 0000000000..f9e95a4996 --- /dev/null +++ b/packages/vue-icon/src/maintain-inspection-records.ts @@ -0,0 +1,9 @@ +import { svg } from '@opentiny/vue-common' +import MaintainInspectionRecords from '@opentiny/vue-theme/svgs/maintain-inspection-records.svg' + +export default () => + svg({ + name: 'IconMaintainInspectionRecords', + component: MaintainInspectionRecords, + filledComponent: MaintainInspectionRecords + })() diff --git a/packages/vue-icon/src/maintain-inspection-records/index.ts b/packages/vue-icon/src/maintain-inspection-records/index.ts deleted file mode 100644 index 29f1ba99fb..0000000000 --- a/packages/vue-icon/src/maintain-inspection-records/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import MaintainInspectionRecords from '@opentiny/vue-theme/svgs/maintain-inspection-records.svg' - -export default () => svg({ name: 'IconMaintainInspectionRecords', component: MaintainInspectionRecords })() diff --git a/packages/vue-icon/src/male.ts b/packages/vue-icon/src/male.ts new file mode 100644 index 0000000000..984e58fe41 --- /dev/null +++ b/packages/vue-icon/src/male.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Male from '@opentiny/vue-theme/svgs/male.svg' + +export default () => svg({ name: 'IconMale', component: Male, filledComponent: Male })() diff --git a/packages/vue-icon/src/male/index.ts b/packages/vue-icon/src/male/index.ts deleted file mode 100644 index 692fe4bddc..0000000000 --- a/packages/vue-icon/src/male/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Male from '@opentiny/vue-theme/svgs/male.svg' - -export default () => svg({ name: 'IconMale', component: Male })() diff --git a/packages/vue-icon/src/mark-on.ts b/packages/vue-icon/src/mark-on.ts new file mode 100644 index 0000000000..52cf42100e --- /dev/null +++ b/packages/vue-icon/src/mark-on.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import MarkOn from '@opentiny/vue-theme/svgs/mark-on.svg' + +export default () => svg({ name: 'IconMarkOn', component: MarkOn, filledComponent: MarkOn })() diff --git a/packages/vue-icon/src/mark-on/index.ts b/packages/vue-icon/src/mark-on/index.ts deleted file mode 100644 index 9413e380e5..0000000000 --- a/packages/vue-icon/src/mark-on/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import MarkOn from '@opentiny/vue-theme/svgs/mark-on.svg' - -export default () => svg({ name: 'IconMarkOn', component: MarkOn })() diff --git a/packages/vue-icon/src/material.ts b/packages/vue-icon/src/material.ts new file mode 100644 index 0000000000..a1f973488d --- /dev/null +++ b/packages/vue-icon/src/material.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Material from '@opentiny/vue-theme/svgs/material.svg' + +export default () => svg({ name: 'IconMaterial', component: Material, filledComponent: Material })() diff --git a/packages/vue-icon/src/material/index.ts b/packages/vue-icon/src/material/index.ts deleted file mode 100644 index 90d60b7b79..0000000000 --- a/packages/vue-icon/src/material/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import Material from '@opentiny/vue-theme/svgs/material.svg' - -export default () => svg({ name: 'IconMaterial', component: Material })() diff --git a/packages/vue-icon/src/meh.ts b/packages/vue-icon/src/meh.ts new file mode 100644 index 0000000000..f1a71f240b --- /dev/null +++ b/packages/vue-icon/src/meh.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Meh from '@opentiny/vue-theme/svgs/meh.svg' + +export default () => svg({ name: 'IconMeh', component: Meh, filledComponent: Meh })() diff --git a/packages/vue-icon/src/meh/index.ts b/packages/vue-icon/src/meh/index.ts deleted file mode 100644 index 29965fdb39..0000000000 --- a/packages/vue-icon/src/meh/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Meh from '@opentiny/vue-theme/svgs/meh.svg' - -export default () => svg({ name: 'IconMeh', component: Meh })() diff --git a/packages/vue-icon/src/message-circle.ts b/packages/vue-icon/src/message-circle.ts new file mode 100644 index 0000000000..448092ccdd --- /dev/null +++ b/packages/vue-icon/src/message-circle.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import MessageCircle from '@opentiny/vue-theme/svgs/message-circle.svg' + +export default () => svg({ name: 'IconMessageCircle', component: MessageCircle, filledComponent: MessageCircle })() diff --git a/packages/vue-icon/src/message-circle/index.ts b/packages/vue-icon/src/message-circle/index.ts deleted file mode 100644 index 8bb62168ef..0000000000 --- a/packages/vue-icon/src/message-circle/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import MessageCircle from '@opentiny/vue-theme/svgs/message-circle.svg' - -export default () => svg({ name: 'IconMessageCircle', component: MessageCircle })() diff --git a/packages/vue-icon/src/mic.ts b/packages/vue-icon/src/mic.ts new file mode 100644 index 0000000000..d247672e43 --- /dev/null +++ b/packages/vue-icon/src/mic.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Mic from '@opentiny/vue-theme/svgs/mic.svg' + +export default () => svg({ name: 'IconMic', component: Mic, filledComponent: Mic })() diff --git a/packages/vue-icon/src/mic/index.ts b/packages/vue-icon/src/mic/index.ts deleted file mode 100644 index e8daf01a9e..0000000000 --- a/packages/vue-icon/src/mic/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import Mic from '@opentiny/vue-theme/svgs/mic.svg' - -export default () => svg({ name: 'IconMic', component: Mic })() diff --git a/packages/vue-icon/src/milestone.ts b/packages/vue-icon/src/milestone.ts new file mode 100644 index 0000000000..2979cb455b --- /dev/null +++ b/packages/vue-icon/src/milestone.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Milestone from '@opentiny/vue-theme/svgs/milestone.svg' + +export default () => svg({ name: 'IconMilestone', component: Milestone, filledComponent: Milestone })() diff --git a/packages/vue-icon/src/milestone/index.ts b/packages/vue-icon/src/milestone/index.ts deleted file mode 100644 index 62f9d90dae..0000000000 --- a/packages/vue-icon/src/milestone/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import Milestone from '@opentiny/vue-theme/svgs/milestone.svg' - -export default () => svg({ name: 'IconMilestone', component: Milestone })() diff --git a/packages/vue-icon/src/minscreen-left.ts b/packages/vue-icon/src/minscreen-left.ts new file mode 100644 index 0000000000..13d39c1511 --- /dev/null +++ b/packages/vue-icon/src/minscreen-left.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import MinscreenLeft from '@opentiny/vue-theme/svgs/minscreen-left.svg' + +export default () => svg({ name: 'IconMinscreenLeft', component: MinscreenLeft, filledComponent: MinscreenLeft })() diff --git a/packages/vue-icon/src/minscreen-left/index.ts b/packages/vue-icon/src/minscreen-left/index.ts deleted file mode 100644 index 6eda473547..0000000000 --- a/packages/vue-icon/src/minscreen-left/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import MinscreenLeft from '@opentiny/vue-theme/svgs/minscreen-left.svg' - -export default () => svg({ name: 'IconMinscreenLeft', component: MinscreenLeft })() diff --git a/packages/vue-icon/src/minscreen-right.ts b/packages/vue-icon/src/minscreen-right.ts new file mode 100644 index 0000000000..0060fbb544 --- /dev/null +++ b/packages/vue-icon/src/minscreen-right.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import MinscreenRight from '@opentiny/vue-theme/svgs/minscreen-right.svg' + +export default () => svg({ name: 'IconMinscreenRight', component: MinscreenRight, filledComponent: MinscreenRight })() diff --git a/packages/vue-icon/src/minscreen-right/index.ts b/packages/vue-icon/src/minscreen-right/index.ts deleted file mode 100644 index dbbd5f97b4..0000000000 --- a/packages/vue-icon/src/minscreen-right/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import MinscreenRight from '@opentiny/vue-theme/svgs/minscreen-right.svg' - -export default () => svg({ name: 'IconMinscreenRight', component: MinscreenRight })() diff --git a/packages/vue-icon/src/minscreen.ts b/packages/vue-icon/src/minscreen.ts new file mode 100644 index 0000000000..d7494a0a85 --- /dev/null +++ b/packages/vue-icon/src/minscreen.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Minscreen from '@opentiny/vue-theme/svgs/minscreen.svg' + +export default () => svg({ name: 'IconMinscreen', component: Minscreen, filledComponent: Minscreen })() diff --git a/packages/vue-icon/src/minscreen/index.ts b/packages/vue-icon/src/minscreen/index.ts deleted file mode 100644 index 39e571738a..0000000000 --- a/packages/vue-icon/src/minscreen/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Minscreen from '@opentiny/vue-theme/svgs/minscreen.svg' - -export default () => svg({ name: 'IconMinscreen', component: Minscreen })() diff --git a/packages/vue-icon/src/minus-circle.ts b/packages/vue-icon/src/minus-circle.ts new file mode 100644 index 0000000000..f4e48c404c --- /dev/null +++ b/packages/vue-icon/src/minus-circle.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import MinusCircle from '@opentiny/vue-theme/svgs/minus-circle.svg' + +export default () => svg({ name: 'IconMinusCircle', component: MinusCircle, filledComponent: MinusCircle })() diff --git a/packages/vue-icon/src/minus-circle/index.ts b/packages/vue-icon/src/minus-circle/index.ts deleted file mode 100644 index 2c418e85f6..0000000000 --- a/packages/vue-icon/src/minus-circle/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import MinusCircle from '@opentiny/vue-theme/svgs/minus-circle.svg' - -export default () => svg({ name: 'IconMinusCircle', component: MinusCircle })() diff --git a/packages/vue-icon/src/minus-square.ts b/packages/vue-icon/src/minus-square.ts new file mode 100644 index 0000000000..1d8711aef0 --- /dev/null +++ b/packages/vue-icon/src/minus-square.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import MinusSquare from '@opentiny/vue-theme/svgs/minus-square.svg' + +export default () => svg({ name: 'IconMinusSquare', component: MinusSquare, filledComponent: MinusSquare })() diff --git a/packages/vue-icon/src/minus-square/index.ts b/packages/vue-icon/src/minus-square/index.ts deleted file mode 100644 index c9ceeea7b3..0000000000 --- a/packages/vue-icon/src/minus-square/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import MinusSquare from '@opentiny/vue-theme/svgs/minus-square.svg' - -export default () => svg({ name: 'IconMinusSquare', component: MinusSquare })() diff --git a/packages/vue-icon/src/minus.ts b/packages/vue-icon/src/minus.ts new file mode 100644 index 0000000000..dde1e51a0e --- /dev/null +++ b/packages/vue-icon/src/minus.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Minus from '@opentiny/vue-theme/svgs/minus.svg' + +export default () => svg({ name: 'IconMinus', component: Minus, filledComponent: Minus })() diff --git a/packages/vue-icon/src/minus/index.ts b/packages/vue-icon/src/minus/index.ts deleted file mode 100644 index 3c6b16bd2a..0000000000 --- a/packages/vue-icon/src/minus/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Minus from '@opentiny/vue-theme/svgs/minus.svg' - -export default () => svg({ name: 'IconMinus', component: Minus })() diff --git a/packages/vue-icon/src/mobile-checkbox-half.ts b/packages/vue-icon/src/mobile-checkbox-half.ts new file mode 100644 index 0000000000..cf66d525fc --- /dev/null +++ b/packages/vue-icon/src/mobile-checkbox-half.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import MobileCheckboxHalf from '@opentiny/vue-theme/svgs/mobile-checkbox-half.svg' + +export default () => + svg({ name: 'IconMobileCheckboxHalf', component: MobileCheckboxHalf, filledComponent: MobileCheckboxHalf })() diff --git a/packages/vue-icon/src/mobile-checkbox-half/index.ts b/packages/vue-icon/src/mobile-checkbox-half/index.ts deleted file mode 100644 index 0e421840e4..0000000000 --- a/packages/vue-icon/src/mobile-checkbox-half/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import MobileCheckboxHalf from '@opentiny/vue-theme/svgs/mobile-checkbox-half.svg' - -export default () => svg({ name: 'IconMobileCheckboxHalf', component: MobileCheckboxHalf })() diff --git a/packages/vue-icon/src/mobile-checkbox-selected.ts b/packages/vue-icon/src/mobile-checkbox-selected.ts new file mode 100644 index 0000000000..01232e1626 --- /dev/null +++ b/packages/vue-icon/src/mobile-checkbox-selected.ts @@ -0,0 +1,9 @@ +import { svg } from '@opentiny/vue-common' +import MobileCheckboxSelected from '@opentiny/vue-theme/svgs/mobile-checkbox-selected.svg' + +export default () => + svg({ + name: 'IconMobileCheckboxSelected', + component: MobileCheckboxSelected, + filledComponent: MobileCheckboxSelected + })() diff --git a/packages/vue-icon/src/mobile-checkbox-selected/index.ts b/packages/vue-icon/src/mobile-checkbox-selected/index.ts deleted file mode 100644 index e944debf8f..0000000000 --- a/packages/vue-icon/src/mobile-checkbox-selected/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import MobileCheckboxSelected from '@opentiny/vue-theme/svgs/mobile-checkbox-selected.svg' - -export default () => svg({ name: 'IconMobileCheckboxSelected', component: MobileCheckboxSelected })() diff --git a/packages/vue-icon/src/mobile-checkbox.ts b/packages/vue-icon/src/mobile-checkbox.ts new file mode 100644 index 0000000000..f645510ac9 --- /dev/null +++ b/packages/vue-icon/src/mobile-checkbox.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import MobileCheckbox from '@opentiny/vue-theme/svgs/mobile-checkbox.svg' + +export default () => svg({ name: 'IconMobileCheckbox', component: MobileCheckbox, filledComponent: MobileCheckbox })() diff --git a/packages/vue-icon/src/mobile-checkbox/index.ts b/packages/vue-icon/src/mobile-checkbox/index.ts deleted file mode 100644 index 85113049aa..0000000000 --- a/packages/vue-icon/src/mobile-checkbox/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import MobileCheckbox from '@opentiny/vue-theme/svgs/mobile-checkbox.svg' - -export default () => svg({ name: 'IconMobileCheckbox', component: MobileCheckbox })() diff --git a/packages/vue-icon/src/mobile-error-white.ts b/packages/vue-icon/src/mobile-error-white.ts new file mode 100644 index 0000000000..9a0861863b --- /dev/null +++ b/packages/vue-icon/src/mobile-error-white.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import MobileErrorWhite from '@opentiny/vue-theme/svgs/mobile-error-white.svg' + +export default () => + svg({ name: 'IconMobileErrorWhite', component: MobileErrorWhite, filledComponent: MobileErrorWhite })() diff --git a/packages/vue-icon/src/mobile-error-white/index.ts b/packages/vue-icon/src/mobile-error-white/index.ts deleted file mode 100644 index db5c18183e..0000000000 --- a/packages/vue-icon/src/mobile-error-white/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import MobileErrorWhite from '@opentiny/vue-theme/svgs/mobile-error-white.svg' - -export default () => svg({ name: 'IconMobileErrorWhite', component: MobileErrorWhite })() diff --git a/packages/vue-icon/src/mobile-radio-selected.ts b/packages/vue-icon/src/mobile-radio-selected.ts new file mode 100644 index 0000000000..b40eb0ed5b --- /dev/null +++ b/packages/vue-icon/src/mobile-radio-selected.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import MobileRadioSelected from '@opentiny/vue-theme/svgs/mobile-radio-selected.svg' + +export default () => + svg({ name: 'IconMobileRadioSelected', component: MobileRadioSelected, filledComponent: MobileRadioSelected })() diff --git a/packages/vue-icon/src/mobile-radio-selected/index.ts b/packages/vue-icon/src/mobile-radio-selected/index.ts deleted file mode 100644 index 3635ed70f0..0000000000 --- a/packages/vue-icon/src/mobile-radio-selected/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import MobileRadioSelected from '@opentiny/vue-theme/svgs/mobile-radio-selected.svg' - -export default () => svg({ name: 'IconMobileRadioSelected', component: MobileRadioSelected })() diff --git a/packages/vue-icon/src/mobile-radio.ts b/packages/vue-icon/src/mobile-radio.ts new file mode 100644 index 0000000000..6b50f2b8aa --- /dev/null +++ b/packages/vue-icon/src/mobile-radio.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import MobileRadio from '@opentiny/vue-theme/svgs/mobile-radio.svg' + +export default () => svg({ name: 'IconMobileRadio', component: MobileRadio, filledComponent: MobileRadio })() diff --git a/packages/vue-icon/src/mobile-radio/index.ts b/packages/vue-icon/src/mobile-radio/index.ts deleted file mode 100644 index 98c69a0b78..0000000000 --- a/packages/vue-icon/src/mobile-radio/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import MobileRadio from '@opentiny/vue-theme/svgs/mobile-radio.svg' - -export default () => svg({ name: 'IconMobileRadio', component: MobileRadio })() diff --git a/packages/vue-icon/src/mobile-success-white.ts b/packages/vue-icon/src/mobile-success-white.ts new file mode 100644 index 0000000000..fed68e8387 --- /dev/null +++ b/packages/vue-icon/src/mobile-success-white.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import MobileSuccessWhite from '@opentiny/vue-theme/svgs/mobile-success-white.svg' + +export default () => + svg({ name: 'IconMobileSuccessWhite', component: MobileSuccessWhite, filledComponent: MobileSuccessWhite })() diff --git a/packages/vue-icon/src/mobile-success-white/index.ts b/packages/vue-icon/src/mobile-success-white/index.ts deleted file mode 100644 index 90f60a03b5..0000000000 --- a/packages/vue-icon/src/mobile-success-white/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import MobileSuccessWhite from '@opentiny/vue-theme/svgs/mobile-success-white.svg' - -export default () => svg({ name: 'IconMobileSuccessWhite', component: MobileSuccessWhite })() diff --git a/packages/vue-icon/src/mobile-view.ts b/packages/vue-icon/src/mobile-view.ts new file mode 100644 index 0000000000..0b6e101950 --- /dev/null +++ b/packages/vue-icon/src/mobile-view.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import MobileView from '@opentiny/vue-theme/svgs/mobile-view.svg' + +export default () => svg({ name: 'IconMobileView', component: MobileView, filledComponent: MobileView })() diff --git a/packages/vue-icon/src/mobile-view/index.ts b/packages/vue-icon/src/mobile-view/index.ts deleted file mode 100644 index d27046e346..0000000000 --- a/packages/vue-icon/src/mobile-view/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import MobileView from '@opentiny/vue-theme/svgs/mobile-view.svg' - -export default () => svg({ name: 'IconMobileView', component: MobileView })() diff --git a/packages/vue-icon/src/mobile.ts b/packages/vue-icon/src/mobile.ts new file mode 100644 index 0000000000..33589c6a54 --- /dev/null +++ b/packages/vue-icon/src/mobile.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Mobile from '@opentiny/vue-theme/svgs/mobile.svg' + +export default () => svg({ name: 'IconMobile', component: Mobile, filledComponent: Mobile })() diff --git a/packages/vue-icon/src/mobile/index.ts b/packages/vue-icon/src/mobile/index.ts deleted file mode 100644 index 615bffb6a6..0000000000 --- a/packages/vue-icon/src/mobile/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Mobile from '@opentiny/vue-theme/svgs/mobile.svg' - -export default () => svg({ name: 'IconMobile', component: Mobile })() diff --git a/packages/vue-icon/src/month-view.ts b/packages/vue-icon/src/month-view.ts new file mode 100644 index 0000000000..f3d66037da --- /dev/null +++ b/packages/vue-icon/src/month-view.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import MonthView from '@opentiny/vue-theme/svgs/month-view.svg' + +export default () => svg({ name: 'IconMonthView', component: MonthView, filledComponent: MonthView })() diff --git a/packages/vue-icon/src/month-view/index.ts b/packages/vue-icon/src/month-view/index.ts deleted file mode 100644 index 54f5e2c9cc..0000000000 --- a/packages/vue-icon/src/month-view/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import MonthView from '@opentiny/vue-theme/svgs/month-view.svg' - -export default () => svg({ name: 'IconMonthView', component: MonthView })() diff --git a/packages/vue-icon/src/more.ts b/packages/vue-icon/src/more.ts new file mode 100644 index 0000000000..7cf2c5b69f --- /dev/null +++ b/packages/vue-icon/src/more.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import More from '@opentiny/vue-theme/svgs/more.svg' + +export default () => svg({ name: 'IconMore', component: More, filledComponent: More })() diff --git a/packages/vue-icon/src/more/index.ts b/packages/vue-icon/src/more/index.ts deleted file mode 100644 index 2fc52f0e22..0000000000 --- a/packages/vue-icon/src/more/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import More from '@opentiny/vue-theme/svgs/more.svg' - -export default () => svg({ name: 'IconMore', component: More })() diff --git a/packages/vue-icon/src/msg.ts b/packages/vue-icon/src/msg.ts new file mode 100644 index 0000000000..439b68a881 --- /dev/null +++ b/packages/vue-icon/src/msg.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Msg from '@opentiny/vue-theme/svgs/msg.svg' + +export default () => svg({ name: 'IconMsg', component: Msg, filledComponent: Msg })() diff --git a/packages/vue-icon/src/msg/index.ts b/packages/vue-icon/src/msg/index.ts deleted file mode 100644 index 4f548064b7..0000000000 --- a/packages/vue-icon/src/msg/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Msg from '@opentiny/vue-theme/svgs/msg.svg' - -export default () => svg({ name: 'IconMsg', component: Msg })() diff --git a/packages/vue-icon/src/new.ts b/packages/vue-icon/src/new.ts new file mode 100644 index 0000000000..1708f35be2 --- /dev/null +++ b/packages/vue-icon/src/new.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import New from '@opentiny/vue-theme/svgs/new.svg' + +export default () => svg({ name: 'IconNew', component: New, filledComponent: New })() diff --git a/packages/vue-icon/src/new/index.ts b/packages/vue-icon/src/new/index.ts deleted file mode 100644 index 6f9a43a9dc..0000000000 --- a/packages/vue-icon/src/new/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import New from '@opentiny/vue-theme/svgs/new.svg' - -export default () => svg({ name: 'IconNew', component: New })() diff --git a/packages/vue-icon/src/no-data.ts b/packages/vue-icon/src/no-data.ts new file mode 100644 index 0000000000..240862dade --- /dev/null +++ b/packages/vue-icon/src/no-data.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import NoData from '@opentiny/vue-theme/svgs/no-data.svg' + +export default () => svg({ name: 'IconNoData', component: NoData, filledComponent: NoData })() diff --git a/packages/vue-icon/src/no-data/index.ts b/packages/vue-icon/src/no-data/index.ts deleted file mode 100644 index ad6180d51b..0000000000 --- a/packages/vue-icon/src/no-data/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import NoData from '@opentiny/vue-theme/svgs/no-data.svg' - -export default () => svg({ name: 'IconNoData', component: NoData })() diff --git a/packages/vue-icon/src/no-news.ts b/packages/vue-icon/src/no-news.ts new file mode 100644 index 0000000000..3589b35e9a --- /dev/null +++ b/packages/vue-icon/src/no-news.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import NoNews from '@opentiny/vue-theme/svgs/no-news.svg' + +export default () => svg({ name: 'IconNoNews', component: NoNews, filledComponent: NoNews })() diff --git a/packages/vue-icon/src/no-news/index.ts b/packages/vue-icon/src/no-news/index.ts deleted file mode 100644 index a4cbc85a5a..0000000000 --- a/packages/vue-icon/src/no-news/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import NoNews from '@opentiny/vue-theme/svgs/no-news.svg' - -export default () => svg({ name: 'IconNoNews', component: NoNews })() diff --git a/packages/vue-icon/src/no-perm.ts b/packages/vue-icon/src/no-perm.ts new file mode 100644 index 0000000000..415b114cb2 --- /dev/null +++ b/packages/vue-icon/src/no-perm.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import NoPerm from '@opentiny/vue-theme/svgs/no-perm.svg' + +export default () => svg({ name: 'IconNoPerm', component: NoPerm, filledComponent: NoPerm })() diff --git a/packages/vue-icon/src/no-perm/index.ts b/packages/vue-icon/src/no-perm/index.ts deleted file mode 100644 index d1667f2566..0000000000 --- a/packages/vue-icon/src/no-perm/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import NoPerm from '@opentiny/vue-theme/svgs/no-perm.svg' - -export default () => svg({ name: 'IconNoPerm', component: NoPerm })() diff --git a/packages/vue-icon/src/no-premission.ts b/packages/vue-icon/src/no-premission.ts new file mode 100644 index 0000000000..2468889019 --- /dev/null +++ b/packages/vue-icon/src/no-premission.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import NoPremission from '@opentiny/vue-theme/svgs/no-premission.svg' + +export default () => svg({ name: 'IconNoPremission', component: NoPremission, filledComponent: NoPremission })() diff --git a/packages/vue-icon/src/no-premission/index.ts b/packages/vue-icon/src/no-premission/index.ts deleted file mode 100644 index 36da5a105c..0000000000 --- a/packages/vue-icon/src/no-premission/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import NoPremission from '@opentiny/vue-theme/svgs/no-premission.svg' - -export default () => svg({ name: 'IconNoPremission', component: NoPremission })() diff --git a/packages/vue-icon/src/no-result.ts b/packages/vue-icon/src/no-result.ts new file mode 100644 index 0000000000..6d98500a68 --- /dev/null +++ b/packages/vue-icon/src/no-result.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import NoResult from '@opentiny/vue-theme/svgs/no-result.svg' + +export default () => svg({ name: 'IconNoResult', component: NoResult, filledComponent: NoResult })() diff --git a/packages/vue-icon/src/no-result/index.ts b/packages/vue-icon/src/no-result/index.ts deleted file mode 100644 index 79e2948935..0000000000 --- a/packages/vue-icon/src/no-result/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import NoResult from '@opentiny/vue-theme/svgs/no-result.svg' - -export default () => svg({ name: 'IconNoResult', component: NoResult })() diff --git a/packages/vue-icon/src/node-open.ts b/packages/vue-icon/src/node-open.ts new file mode 100644 index 0000000000..ebd28ab8cf --- /dev/null +++ b/packages/vue-icon/src/node-open.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import NodeOpen from '@opentiny/vue-theme/svgs/node-open.svg' + +export default () => svg({ name: 'IconNodeOpen', component: NodeOpen, filledComponent: NodeOpen })() diff --git a/packages/vue-icon/src/node-open/index.ts b/packages/vue-icon/src/node-open/index.ts deleted file mode 100644 index 0e114d9fe3..0000000000 --- a/packages/vue-icon/src/node-open/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import NodeOpen from '@opentiny/vue-theme/svgs/node-open.svg' - -export default () => svg({ name: 'IconNodeOpen', component: NodeOpen })() diff --git a/packages/vue-icon/src/node.ts b/packages/vue-icon/src/node.ts new file mode 100644 index 0000000000..91f0ab62cb --- /dev/null +++ b/packages/vue-icon/src/node.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Node from '@opentiny/vue-theme/svgs/node.svg' + +export default () => svg({ name: 'IconNode', component: Node, filledComponent: Node })() diff --git a/packages/vue-icon/src/node/index.ts b/packages/vue-icon/src/node/index.ts deleted file mode 100644 index 5c23e7f44c..0000000000 --- a/packages/vue-icon/src/node/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Node from '@opentiny/vue-theme/svgs/node.svg' - -export default () => svg({ name: 'IconNode', component: Node })() diff --git a/packages/vue-icon/src/nodejs.ts b/packages/vue-icon/src/nodejs.ts new file mode 100644 index 0000000000..1c44ae4771 --- /dev/null +++ b/packages/vue-icon/src/nodejs.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Nodejs from '@opentiny/vue-theme/svgs/nodejs.svg' + +export default () => svg({ name: 'IconNodejs', component: Nodejs, filledComponent: Nodejs })() diff --git a/packages/vue-icon/src/nodejs/index.ts b/packages/vue-icon/src/nodejs/index.ts deleted file mode 100644 index 6921e88b78..0000000000 --- a/packages/vue-icon/src/nodejs/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Nodejs from '@opentiny/vue-theme/svgs/nodejs.svg' - -export default () => svg({ name: 'IconNodejs', component: Nodejs })() diff --git a/packages/vue-icon/src/none.ts b/packages/vue-icon/src/none.ts new file mode 100644 index 0000000000..3948afaea3 --- /dev/null +++ b/packages/vue-icon/src/none.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import None from '@opentiny/vue-theme/svgs/none.svg' + +export default () => svg({ name: 'IconNone', component: None, filledComponent: None })() diff --git a/packages/vue-icon/src/none/index.ts b/packages/vue-icon/src/none/index.ts deleted file mode 100644 index 038873562e..0000000000 --- a/packages/vue-icon/src/none/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import None from '@opentiny/vue-theme/svgs/none.svg' - -export default () => svg({ name: 'IconNone', component: None })() diff --git a/packages/vue-icon/src/not-started-mini.ts b/packages/vue-icon/src/not-started-mini.ts new file mode 100644 index 0000000000..c4378692d0 --- /dev/null +++ b/packages/vue-icon/src/not-started-mini.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import NotStartedMini from '@opentiny/vue-theme/svgs/not-started-mini.svg' + +export default () => svg({ name: 'IconNotStartedMini', component: NotStartedMini, filledComponent: NotStartedMini })() diff --git a/packages/vue-icon/src/not-started-mini/index.ts b/packages/vue-icon/src/not-started-mini/index.ts deleted file mode 100644 index e95a53cfa0..0000000000 --- a/packages/vue-icon/src/not-started-mini/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import NotStartedMini from '@opentiny/vue-theme/svgs/not-started-mini.svg' - -export default () => svg({ name: 'IconNotStartedMini', component: NotStartedMini })() diff --git a/packages/vue-icon/src/not-started.ts b/packages/vue-icon/src/not-started.ts new file mode 100644 index 0000000000..2900356e8f --- /dev/null +++ b/packages/vue-icon/src/not-started.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import NotStarted from '@opentiny/vue-theme/svgs/not-started.svg' + +export default () => svg({ name: 'IconNotStarted', component: NotStarted, filledComponent: NotStarted })() diff --git a/packages/vue-icon/src/not-started/index.ts b/packages/vue-icon/src/not-started/index.ts deleted file mode 100644 index e738ba46d4..0000000000 --- a/packages/vue-icon/src/not-started/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import NotStarted from '@opentiny/vue-theme/svgs/not-started.svg' - -export default () => svg({ name: 'IconNotStarted', component: NotStarted })() diff --git a/packages/vue-icon/src/ofd.ts b/packages/vue-icon/src/ofd.ts new file mode 100644 index 0000000000..f079efc381 --- /dev/null +++ b/packages/vue-icon/src/ofd.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Ofd from '@opentiny/vue-theme/svgs/ofd.svg' + +export default () => svg({ name: 'IconOfd', component: Ofd, filledComponent: Ofd })() diff --git a/packages/vue-icon/src/ofd/index.ts b/packages/vue-icon/src/ofd/index.ts deleted file mode 100644 index d6bf40a486..0000000000 --- a/packages/vue-icon/src/ofd/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Ofd from '@opentiny/vue-theme/svgs/ofd.svg' - -export default () => svg({ name: 'IconOfd', component: Ofd })() diff --git a/packages/vue-icon/src/off-line.ts b/packages/vue-icon/src/off-line.ts new file mode 100644 index 0000000000..9787c7295e --- /dev/null +++ b/packages/vue-icon/src/off-line.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import OffLine from '@opentiny/vue-theme/svgs/off-line.svg' + +export default () => svg({ name: 'IconOffLine', component: OffLine, filledComponent: OffLine })() diff --git a/packages/vue-icon/src/off-line/index.ts b/packages/vue-icon/src/off-line/index.ts deleted file mode 100644 index f4599ad080..0000000000 --- a/packages/vue-icon/src/off-line/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import OffLine from '@opentiny/vue-theme/svgs/off-line.svg' - -export default () => svg({ name: 'IconOffLine', component: OffLine })() diff --git a/packages/vue-icon/src/on-going-mini.ts b/packages/vue-icon/src/on-going-mini.ts new file mode 100644 index 0000000000..ea36183722 --- /dev/null +++ b/packages/vue-icon/src/on-going-mini.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import OnGoingMini from '@opentiny/vue-theme/svgs/on-going-mini.svg' + +export default () => svg({ name: 'IconOnGoingMini', component: OnGoingMini, filledComponent: OnGoingMini })() diff --git a/packages/vue-icon/src/on-going-mini/index.ts b/packages/vue-icon/src/on-going-mini/index.ts deleted file mode 100644 index d98156f383..0000000000 --- a/packages/vue-icon/src/on-going-mini/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import OnGoingMini from '@opentiny/vue-theme/svgs/on-going-mini.svg' - -export default () => svg({ name: 'IconOnGoingMini', component: OnGoingMini })() diff --git a/packages/vue-icon/src/on-going.ts b/packages/vue-icon/src/on-going.ts new file mode 100644 index 0000000000..3d3c4bfbbd --- /dev/null +++ b/packages/vue-icon/src/on-going.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import OnGoing from '@opentiny/vue-theme/svgs/on-going.svg' + +export default () => svg({ name: 'IconOnGoing', component: OnGoing, filledComponent: OnGoing })() diff --git a/packages/vue-icon/src/on-going/index.ts b/packages/vue-icon/src/on-going/index.ts deleted file mode 100644 index 42a7d69d29..0000000000 --- a/packages/vue-icon/src/on-going/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import OnGoing from '@opentiny/vue-theme/svgs/on-going.svg' - -export default () => svg({ name: 'IconOnGoing', component: OnGoing })() diff --git a/packages/vue-icon/src/on-line.ts b/packages/vue-icon/src/on-line.ts new file mode 100644 index 0000000000..1e5fa5d94a --- /dev/null +++ b/packages/vue-icon/src/on-line.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import OnLine from '@opentiny/vue-theme/svgs/on-line.svg' + +export default () => svg({ name: 'IconOnLine', component: OnLine, filledComponent: OnLine })() diff --git a/packages/vue-icon/src/on-line/index.ts b/packages/vue-icon/src/on-line/index.ts deleted file mode 100644 index baa6b4c06c..0000000000 --- a/packages/vue-icon/src/on-line/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import OnLine from '@opentiny/vue-theme/svgs/on-line.svg' - -export default () => svg({ name: 'IconOnLine', component: OnLine })() diff --git a/packages/vue-icon/src/operation.ts b/packages/vue-icon/src/operation.ts new file mode 100644 index 0000000000..a3e5bf8570 --- /dev/null +++ b/packages/vue-icon/src/operation.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Operation from '@opentiny/vue-theme/svgs/operation.svg' + +export default () => svg({ name: 'IconOperation', component: Operation, filledComponent: Operation })() diff --git a/packages/vue-icon/src/operation/index.ts b/packages/vue-icon/src/operation/index.ts deleted file mode 100644 index 773c441d60..0000000000 --- a/packages/vue-icon/src/operation/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Operation from '@opentiny/vue-theme/svgs/operation.svg' - -export default () => svg({ name: 'IconOperation', component: Operation })() diff --git a/packages/vue-icon/src/operationfaild-l.ts b/packages/vue-icon/src/operationfaild-l.ts new file mode 100644 index 0000000000..b60d972a2d --- /dev/null +++ b/packages/vue-icon/src/operationfaild-l.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import OperationfaildL from '@opentiny/vue-theme/svgs/operationfaild-l.svg' + +export default () => + svg({ name: 'IconOperationfaildL', component: OperationfaildL, filledComponent: OperationfaildL })() diff --git a/packages/vue-icon/src/operationfaild-l/index.ts b/packages/vue-icon/src/operationfaild-l/index.ts deleted file mode 100644 index d7b5f789bf..0000000000 --- a/packages/vue-icon/src/operationfaild-l/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import OperationfaildL from '@opentiny/vue-theme/svgs/operationfaild-l.svg' - -export default () => svg({ name: 'IconOperationfaildL', component: OperationfaildL })() diff --git a/packages/vue-icon/src/operationfaild.ts b/packages/vue-icon/src/operationfaild.ts new file mode 100644 index 0000000000..3f0931cb8c --- /dev/null +++ b/packages/vue-icon/src/operationfaild.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Operationfaild from '@opentiny/vue-theme/svgs/operationfaild.svg' + +export default () => svg({ name: 'IconOperationfaild', component: Operationfaild, filledComponent: Operationfaild })() diff --git a/packages/vue-icon/src/operationfaild/index.ts b/packages/vue-icon/src/operationfaild/index.ts deleted file mode 100644 index f3b49f3bd4..0000000000 --- a/packages/vue-icon/src/operationfaild/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Operationfaild from '@opentiny/vue-theme/svgs/operationfaild.svg' - -export default () => svg({ name: 'IconOperationfaild', component: Operationfaild })() diff --git a/packages/vue-icon/src/other-type.ts b/packages/vue-icon/src/other-type.ts new file mode 100644 index 0000000000..3d79efb438 --- /dev/null +++ b/packages/vue-icon/src/other-type.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import OtherType from '@opentiny/vue-theme/svgs/other-type.svg' + +export default () => svg({ name: 'IconOtherType', component: OtherType, filledComponent: OtherType })() diff --git a/packages/vue-icon/src/other-type/index.ts b/packages/vue-icon/src/other-type/index.ts deleted file mode 100644 index 7a71f8340f..0000000000 --- a/packages/vue-icon/src/other-type/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import OtherType from '@opentiny/vue-theme/svgs/other-type.svg' - -export default () => svg({ name: 'IconOtherType', component: OtherType })() diff --git a/packages/vue-icon/src/outer-link.ts b/packages/vue-icon/src/outer-link.ts new file mode 100644 index 0000000000..d07387c13a --- /dev/null +++ b/packages/vue-icon/src/outer-link.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import OuterLink from '@opentiny/vue-theme/svgs/outer-link.svg' + +export default () => svg({ name: 'IconOuterLink', component: OuterLink, filledComponent: OuterLink })() diff --git a/packages/vue-icon/src/outer-link/index.ts b/packages/vue-icon/src/outer-link/index.ts deleted file mode 100644 index 7bac3e2ec8..0000000000 --- a/packages/vue-icon/src/outer-link/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import OuterLink from '@opentiny/vue-theme/svgs/outer-link.svg' - -export default () => svg({ name: 'IconOuterLink', component: OuterLink })() diff --git a/packages/vue-icon/src/page-noperm.ts b/packages/vue-icon/src/page-noperm.ts new file mode 100644 index 0000000000..264d7004fe --- /dev/null +++ b/packages/vue-icon/src/page-noperm.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PageNoperm from '@opentiny/vue-theme/svgs/page-noperm.svg' + +export default () => svg({ name: 'IconPageNoperm', component: PageNoperm, filledComponent: PageNoperm })() diff --git a/packages/vue-icon/src/page-noperm/index.ts b/packages/vue-icon/src/page-noperm/index.ts deleted file mode 100644 index 876e8dc4d5..0000000000 --- a/packages/vue-icon/src/page-noperm/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import PageNoperm from '@opentiny/vue-theme/svgs/page-noperm.svg' - -export default () => svg({ name: 'IconPageNoperm', component: PageNoperm })() diff --git a/packages/vue-icon/src/page-nothing.ts b/packages/vue-icon/src/page-nothing.ts new file mode 100644 index 0000000000..0c22f79c8b --- /dev/null +++ b/packages/vue-icon/src/page-nothing.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PageNothing from '@opentiny/vue-theme/svgs/page-nothing.svg' + +export default () => svg({ name: 'IconPageNothing', component: PageNothing, filledComponent: PageNothing })() diff --git a/packages/vue-icon/src/page-nothing/index.ts b/packages/vue-icon/src/page-nothing/index.ts deleted file mode 100644 index 0ebc6251b9..0000000000 --- a/packages/vue-icon/src/page-nothing/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import PageNothing from '@opentiny/vue-theme/svgs/page-nothing.svg' - -export default () => svg({ name: 'IconPageNothing', component: PageNothing })() diff --git a/packages/vue-icon/src/page-servererror.ts b/packages/vue-icon/src/page-servererror.ts new file mode 100644 index 0000000000..19cc05410f --- /dev/null +++ b/packages/vue-icon/src/page-servererror.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import PageServererror from '@opentiny/vue-theme/svgs/page-servererror.svg' + +export default () => + svg({ name: 'IconPageServererror', component: PageServererror, filledComponent: PageServererror })() diff --git a/packages/vue-icon/src/page-servererror/index.ts b/packages/vue-icon/src/page-servererror/index.ts deleted file mode 100644 index f8958f9fa2..0000000000 --- a/packages/vue-icon/src/page-servererror/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import PageServererror from '@opentiny/vue-theme/svgs/page-servererror.svg' - -export default () => svg({ name: 'IconPageServererror', component: PageServererror })() diff --git a/packages/vue-icon/src/page-weaknet.ts b/packages/vue-icon/src/page-weaknet.ts new file mode 100644 index 0000000000..a8ccf3a41d --- /dev/null +++ b/packages/vue-icon/src/page-weaknet.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PageWeaknet from '@opentiny/vue-theme/svgs/page-weaknet.svg' + +export default () => svg({ name: 'IconPageWeaknet', component: PageWeaknet, filledComponent: PageWeaknet })() diff --git a/packages/vue-icon/src/page-weaknet/index.ts b/packages/vue-icon/src/page-weaknet/index.ts deleted file mode 100644 index 74e803bcd4..0000000000 --- a/packages/vue-icon/src/page-weaknet/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import PageWeaknet from '@opentiny/vue-theme/svgs/page-weaknet.svg' - -export default () => svg({ name: 'IconPageWeaknet', component: PageWeaknet })() diff --git a/packages/vue-icon/src/pagelink.ts b/packages/vue-icon/src/pagelink.ts new file mode 100644 index 0000000000..b81f6a50c5 --- /dev/null +++ b/packages/vue-icon/src/pagelink.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Pagelink from '@opentiny/vue-theme/svgs/pagelink.svg' + +export default () => svg({ name: 'IconPagelink', component: Pagelink, filledComponent: Pagelink })() diff --git a/packages/vue-icon/src/pagelink/index.ts b/packages/vue-icon/src/pagelink/index.ts deleted file mode 100644 index 8c1931f896..0000000000 --- a/packages/vue-icon/src/pagelink/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Pagelink from '@opentiny/vue-theme/svgs/pagelink.svg' - -export default () => svg({ name: 'IconPagelink', component: Pagelink })() diff --git a/packages/vue-icon/src/pager-first.ts b/packages/vue-icon/src/pager-first.ts new file mode 100644 index 0000000000..f884e968ed --- /dev/null +++ b/packages/vue-icon/src/pager-first.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PagerFirst from '@opentiny/vue-theme/svgs/pager-first.svg' + +export default () => svg({ name: 'IconPagerFirst', component: PagerFirst, filledComponent: PagerFirst })() diff --git a/packages/vue-icon/src/pager-first/index.ts b/packages/vue-icon/src/pager-first/index.ts deleted file mode 100644 index f362de1fa7..0000000000 --- a/packages/vue-icon/src/pager-first/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PagerFirst from '@opentiny/vue-theme/svgs/pager-first.svg' - -export default () => svg({ name: 'IconPagerFirst', component: PagerFirst })() diff --git a/packages/vue-icon/src/pager-last.ts b/packages/vue-icon/src/pager-last.ts new file mode 100644 index 0000000000..59ab81c32d --- /dev/null +++ b/packages/vue-icon/src/pager-last.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PagerLast from '@opentiny/vue-theme/svgs/pager-last.svg' + +export default () => svg({ name: 'IconPagerLast', component: PagerLast, filledComponent: PagerLast })() diff --git a/packages/vue-icon/src/pager-last/index.ts b/packages/vue-icon/src/pager-last/index.ts deleted file mode 100644 index d2c95719e5..0000000000 --- a/packages/vue-icon/src/pager-last/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PagerLast from '@opentiny/vue-theme/svgs/pager-last.svg' - -export default () => svg({ name: 'IconPagerLast', component: PagerLast })() diff --git a/packages/vue-icon/src/pager-next.ts b/packages/vue-icon/src/pager-next.ts new file mode 100644 index 0000000000..1c9f260513 --- /dev/null +++ b/packages/vue-icon/src/pager-next.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PagerNext from '@opentiny/vue-theme/svgs/pager-next.svg' + +export default () => svg({ name: 'IconPagerNext', component: PagerNext, filledComponent: PagerNext })() diff --git a/packages/vue-icon/src/pager-next/index.ts b/packages/vue-icon/src/pager-next/index.ts deleted file mode 100644 index 9f760b1ff1..0000000000 --- a/packages/vue-icon/src/pager-next/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PagerNext from '@opentiny/vue-theme/svgs/pager-next.svg' - -export default () => svg({ name: 'IconPagerNext', component: PagerNext })() diff --git a/packages/vue-icon/src/pager-prev.ts b/packages/vue-icon/src/pager-prev.ts new file mode 100644 index 0000000000..84d608a875 --- /dev/null +++ b/packages/vue-icon/src/pager-prev.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PagerPrev from '@opentiny/vue-theme/svgs/pager-prev.svg' + +export default () => svg({ name: 'IconPagerPrev', component: PagerPrev, filledComponent: PagerPrev })() diff --git a/packages/vue-icon/src/pager-prev/index.ts b/packages/vue-icon/src/pager-prev/index.ts deleted file mode 100644 index 31b6865d26..0000000000 --- a/packages/vue-icon/src/pager-prev/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PagerPrev from '@opentiny/vue-theme/svgs/pager-prev.svg' - -export default () => svg({ name: 'IconPagerPrev', component: PagerPrev })() diff --git a/packages/vue-icon/src/panel-max.ts b/packages/vue-icon/src/panel-max.ts new file mode 100644 index 0000000000..83af924a4b --- /dev/null +++ b/packages/vue-icon/src/panel-max.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PanelMax from '@opentiny/vue-theme/svgs/panel-max.svg' + +export default () => svg({ name: 'IconPanelMax', component: PanelMax, filledComponent: PanelMax })() diff --git a/packages/vue-icon/src/panel-max/index.ts b/packages/vue-icon/src/panel-max/index.ts deleted file mode 100644 index b12fbea0ac..0000000000 --- a/packages/vue-icon/src/panel-max/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PanelMax from '@opentiny/vue-theme/svgs/panel-max.svg' - -export default () => svg({ name: 'IconPanelMax', component: PanelMax })() diff --git a/packages/vue-icon/src/panel-mini.ts b/packages/vue-icon/src/panel-mini.ts new file mode 100644 index 0000000000..cfd82d3a8a --- /dev/null +++ b/packages/vue-icon/src/panel-mini.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PanelMini from '@opentiny/vue-theme/svgs/panel-mini.svg' + +export default () => svg({ name: 'IconPanelMini', component: PanelMini, filledComponent: PanelMini })() diff --git a/packages/vue-icon/src/panel-mini/index.ts b/packages/vue-icon/src/panel-mini/index.ts deleted file mode 100644 index 04c1b1e9fc..0000000000 --- a/packages/vue-icon/src/panel-mini/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PanelMini from '@opentiny/vue-theme/svgs/panel-mini.svg' - -export default () => svg({ name: 'IconPanelMini', component: PanelMini })() diff --git a/packages/vue-icon/src/panel-normal.ts b/packages/vue-icon/src/panel-normal.ts new file mode 100644 index 0000000000..aa84b9b285 --- /dev/null +++ b/packages/vue-icon/src/panel-normal.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PanelNormal from '@opentiny/vue-theme/svgs/panel-normal.svg' + +export default () => svg({ name: 'IconPanelNormal', component: PanelNormal, filledComponent: PanelNormal })() diff --git a/packages/vue-icon/src/panel-normal/index.ts b/packages/vue-icon/src/panel-normal/index.ts deleted file mode 100644 index 05808a908c..0000000000 --- a/packages/vue-icon/src/panel-normal/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PanelNormal from '@opentiny/vue-theme/svgs/panel-normal.svg' - -export default () => svg({ name: 'IconPanelNormal', component: PanelNormal })() diff --git a/packages/vue-icon/src/pause-circle.ts b/packages/vue-icon/src/pause-circle.ts new file mode 100644 index 0000000000..1f95f2cd20 --- /dev/null +++ b/packages/vue-icon/src/pause-circle.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PauseCircle from '@opentiny/vue-theme/svgs/pause-circle.svg' + +export default () => svg({ name: 'IconPauseCircle', component: PauseCircle, filledComponent: PauseCircle })() diff --git a/packages/vue-icon/src/pause-circle/index.ts b/packages/vue-icon/src/pause-circle/index.ts deleted file mode 100644 index 5b7e34c4f3..0000000000 --- a/packages/vue-icon/src/pause-circle/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PauseCircle from '@opentiny/vue-theme/svgs/pause-circle.svg' - -export default () => svg({ name: 'IconPauseCircle', component: PauseCircle })() diff --git a/packages/vue-icon/src/pause.ts b/packages/vue-icon/src/pause.ts new file mode 100644 index 0000000000..1251c8e471 --- /dev/null +++ b/packages/vue-icon/src/pause.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Pause from '@opentiny/vue-theme/svgs/pause.svg' + +export default () => svg({ name: 'IconPause', component: Pause, filledComponent: Pause })() diff --git a/packages/vue-icon/src/pause/index.ts b/packages/vue-icon/src/pause/index.ts deleted file mode 100644 index 2e7669a088..0000000000 --- a/packages/vue-icon/src/pause/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Pause from '@opentiny/vue-theme/svgs/pause.svg' - -export default () => svg({ name: 'IconPause', component: Pause })() diff --git a/packages/vue-icon/src/payment-slips.ts b/packages/vue-icon/src/payment-slips.ts new file mode 100644 index 0000000000..7e81ef17e4 --- /dev/null +++ b/packages/vue-icon/src/payment-slips.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PaymentSlips from '@opentiny/vue-theme/svgs/payment-slips.svg' + +export default () => svg({ name: 'IconPaymentSlips', component: PaymentSlips, filledComponent: PaymentSlips })() diff --git a/packages/vue-icon/src/payment-slips/index.ts b/packages/vue-icon/src/payment-slips/index.ts deleted file mode 100644 index 8e385daf82..0000000000 --- a/packages/vue-icon/src/payment-slips/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PaymentSlips from '@opentiny/vue-theme/svgs/payment-slips.svg' - -export default () => svg({ name: 'IconPaymentSlips', component: PaymentSlips })() diff --git a/packages/vue-icon/src/pdf-type.ts b/packages/vue-icon/src/pdf-type.ts new file mode 100644 index 0000000000..3e22e64e8c --- /dev/null +++ b/packages/vue-icon/src/pdf-type.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PdfType from '@opentiny/vue-theme/svgs/pdf-type.svg' + +export default () => svg({ name: 'IconPdfType', component: PdfType, filledComponent: PdfType })() diff --git a/packages/vue-icon/src/pdf-type/index.ts b/packages/vue-icon/src/pdf-type/index.ts deleted file mode 100644 index 5b00234587..0000000000 --- a/packages/vue-icon/src/pdf-type/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import PdfType from '@opentiny/vue-theme/svgs/pdf-type.svg' - -export default () => svg({ name: 'IconPdfType', component: PdfType })() diff --git a/packages/vue-icon/src/pending-review.ts b/packages/vue-icon/src/pending-review.ts new file mode 100644 index 0000000000..7390f5a460 --- /dev/null +++ b/packages/vue-icon/src/pending-review.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PendingReview from '@opentiny/vue-theme/svgs/pending-review.svg' + +export default () => svg({ name: 'IconPendingReview', component: PendingReview, filledComponent: PendingReview })() diff --git a/packages/vue-icon/src/pending-review/index.ts b/packages/vue-icon/src/pending-review/index.ts deleted file mode 100644 index 8c621b6b5f..0000000000 --- a/packages/vue-icon/src/pending-review/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PendingReview from '@opentiny/vue-theme/svgs/pending-review.svg' - -export default () => svg({ name: 'IconPendingReview', component: PendingReview })() diff --git a/packages/vue-icon/src/performance.ts b/packages/vue-icon/src/performance.ts new file mode 100644 index 0000000000..8157206819 --- /dev/null +++ b/packages/vue-icon/src/performance.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Performance from '@opentiny/vue-theme/svgs/performance.svg' + +export default () => svg({ name: 'IconPerformance', component: Performance, filledComponent: Performance })() diff --git a/packages/vue-icon/src/performance/index.ts b/packages/vue-icon/src/performance/index.ts deleted file mode 100644 index 2a7f23ca97..0000000000 --- a/packages/vue-icon/src/performance/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Performance from '@opentiny/vue-theme/svgs/performance.svg' - -export default () => svg({ name: 'IconPerformance', component: Performance })() diff --git a/packages/vue-icon/src/person-history.ts b/packages/vue-icon/src/person-history.ts new file mode 100644 index 0000000000..ef139de949 --- /dev/null +++ b/packages/vue-icon/src/person-history.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PersonHistory from '@opentiny/vue-theme/svgs/person-history.svg' + +export default () => svg({ name: 'IconPersonHistory', component: PersonHistory, filledComponent: PersonHistory })() diff --git a/packages/vue-icon/src/person-history/index.ts b/packages/vue-icon/src/person-history/index.ts deleted file mode 100644 index b86f9e2bcf..0000000000 --- a/packages/vue-icon/src/person-history/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PersonHistory from '@opentiny/vue-theme/svgs/person-history.svg' - -export default () => svg({ name: 'IconPersonHistory', component: PersonHistory })() diff --git a/packages/vue-icon/src/picture-type.ts b/packages/vue-icon/src/picture-type.ts new file mode 100644 index 0000000000..9ce20b3842 --- /dev/null +++ b/packages/vue-icon/src/picture-type.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PictureType from '@opentiny/vue-theme/svgs/picture-type.svg' + +export default () => svg({ name: 'IconPictureType', component: PictureType, filledComponent: PictureType })() diff --git a/packages/vue-icon/src/picture-type/index.ts b/packages/vue-icon/src/picture-type/index.ts deleted file mode 100644 index e613be8e0e..0000000000 --- a/packages/vue-icon/src/picture-type/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import PictureType from '@opentiny/vue-theme/svgs/picture-type.svg' - -export default () => svg({ name: 'IconPictureType', component: PictureType })() diff --git a/packages/vue-icon/src/picture.ts b/packages/vue-icon/src/picture.ts new file mode 100644 index 0000000000..4f242ff246 --- /dev/null +++ b/packages/vue-icon/src/picture.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Picture from '@opentiny/vue-theme/svgs/picture.svg' + +export default () => svg({ name: 'IconPicture', component: Picture, filledComponent: Picture })() diff --git a/packages/vue-icon/src/picture/index.ts b/packages/vue-icon/src/picture/index.ts deleted file mode 100644 index e8cc66a611..0000000000 --- a/packages/vue-icon/src/picture/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Picture from '@opentiny/vue-theme/svgs/picture.svg' - -export default () => svg({ name: 'IconPicture', component: Picture })() diff --git a/packages/vue-icon/src/pie-chart.ts b/packages/vue-icon/src/pie-chart.ts new file mode 100644 index 0000000000..6353d33042 --- /dev/null +++ b/packages/vue-icon/src/pie-chart.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PieChart from '@opentiny/vue-theme/svgs/pie-chart.svg' + +export default () => svg({ name: 'IconPieChart', component: PieChart, filledComponent: PieChart })() diff --git a/packages/vue-icon/src/pie-chart/index.ts b/packages/vue-icon/src/pie-chart/index.ts deleted file mode 100644 index aa273804e4..0000000000 --- a/packages/vue-icon/src/pie-chart/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PieChart from '@opentiny/vue-theme/svgs/pie-chart.svg' - -export default () => svg({ name: 'IconPieChart', component: PieChart })() diff --git a/packages/vue-icon/src/plus-circle.ts b/packages/vue-icon/src/plus-circle.ts new file mode 100644 index 0000000000..98d23babfc --- /dev/null +++ b/packages/vue-icon/src/plus-circle.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PlusCircle from '@opentiny/vue-theme/svgs/plus-circle.svg' + +export default () => svg({ name: 'IconPlusCircle', component: PlusCircle, filledComponent: PlusCircle })() diff --git a/packages/vue-icon/src/plus-circle/index.ts b/packages/vue-icon/src/plus-circle/index.ts deleted file mode 100644 index 74b0811555..0000000000 --- a/packages/vue-icon/src/plus-circle/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PlusCircle from '@opentiny/vue-theme/svgs/plus-circle.svg' - -export default () => svg({ name: 'IconPlusCircle', component: PlusCircle })() diff --git a/packages/vue-icon/src/plus-square.ts b/packages/vue-icon/src/plus-square.ts new file mode 100644 index 0000000000..8fd11c1ad5 --- /dev/null +++ b/packages/vue-icon/src/plus-square.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PlusSquare from '@opentiny/vue-theme/svgs/plus-square.svg' + +export default () => svg({ name: 'IconPlusSquare', component: PlusSquare, filledComponent: PlusSquare })() diff --git a/packages/vue-icon/src/plus-square/index.ts b/packages/vue-icon/src/plus-square/index.ts deleted file mode 100644 index 998635ff05..0000000000 --- a/packages/vue-icon/src/plus-square/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PlusSquare from '@opentiny/vue-theme/svgs/plus-square.svg' - -export default () => svg({ name: 'IconPlusSquare', component: PlusSquare })() diff --git a/packages/vue-icon/src/plus.ts b/packages/vue-icon/src/plus.ts new file mode 100644 index 0000000000..4539b0a209 --- /dev/null +++ b/packages/vue-icon/src/plus.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Plus from '@opentiny/vue-theme/svgs/plus.svg' + +export default () => svg({ name: 'IconPlus', component: Plus, filledComponent: Plus })() diff --git a/packages/vue-icon/src/plus/index.ts b/packages/vue-icon/src/plus/index.ts deleted file mode 100644 index 1c131cafea..0000000000 --- a/packages/vue-icon/src/plus/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Plus from '@opentiny/vue-theme/svgs/plus.svg' - -export default () => svg({ name: 'IconPlus', component: Plus })() diff --git a/packages/vue-icon/src/popup.ts b/packages/vue-icon/src/popup.ts new file mode 100644 index 0000000000..abaa48d257 --- /dev/null +++ b/packages/vue-icon/src/popup.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Popup from '@opentiny/vue-theme/svgs/popup.svg' + +export default () => svg({ name: 'IconPopup', component: Popup, filledComponent: Popup })() diff --git a/packages/vue-icon/src/popup/index.ts b/packages/vue-icon/src/popup/index.ts deleted file mode 100644 index 7390ee429c..0000000000 --- a/packages/vue-icon/src/popup/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Popup from '@opentiny/vue-theme/svgs/popup.svg' - -export default () => svg({ name: 'IconPopup', component: Popup })() diff --git a/packages/vue-icon/src/ppt-type.ts b/packages/vue-icon/src/ppt-type.ts new file mode 100644 index 0000000000..b7617a69ef --- /dev/null +++ b/packages/vue-icon/src/ppt-type.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PptType from '@opentiny/vue-theme/svgs/ppt-type.svg' + +export default () => svg({ name: 'IconPptType', component: PptType, filledComponent: PptType })() diff --git a/packages/vue-icon/src/ppt-type/index.ts b/packages/vue-icon/src/ppt-type/index.ts deleted file mode 100644 index 456e0b8239..0000000000 --- a/packages/vue-icon/src/ppt-type/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import PptType from '@opentiny/vue-theme/svgs/ppt-type.svg' - -export default () => svg({ name: 'IconPptType', component: PptType })() diff --git a/packages/vue-icon/src/pre-checked.ts b/packages/vue-icon/src/pre-checked.ts new file mode 100644 index 0000000000..5253d80093 --- /dev/null +++ b/packages/vue-icon/src/pre-checked.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PreChecked from '@opentiny/vue-theme/svgs/pre-checked.svg' + +export default () => svg({ name: 'IconPreChecked', component: PreChecked, filledComponent: PreChecked })() diff --git a/packages/vue-icon/src/pre-checked/index.ts b/packages/vue-icon/src/pre-checked/index.ts deleted file mode 100644 index 37bb9980af..0000000000 --- a/packages/vue-icon/src/pre-checked/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PreChecked from '@opentiny/vue-theme/svgs/pre-checked.svg' - -export default () => svg({ name: 'IconPreChecked', component: PreChecked })() diff --git a/packages/vue-icon/src/print-preview.ts b/packages/vue-icon/src/print-preview.ts new file mode 100644 index 0000000000..9e744fb1ee --- /dev/null +++ b/packages/vue-icon/src/print-preview.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PrintPreview from '@opentiny/vue-theme/svgs/print-preview.svg' + +export default () => svg({ name: 'IconPrintPreview', component: PrintPreview, filledComponent: PrintPreview })() diff --git a/packages/vue-icon/src/print-preview/index.ts b/packages/vue-icon/src/print-preview/index.ts deleted file mode 100644 index f96ce81619..0000000000 --- a/packages/vue-icon/src/print-preview/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PrintPreview from '@opentiny/vue-theme/svgs/print-preview.svg' - -export default () => svg({ name: 'IconPrintPreview', component: PrintPreview })() diff --git a/packages/vue-icon/src/process-plan-requirements.ts b/packages/vue-icon/src/process-plan-requirements.ts new file mode 100644 index 0000000000..6901ca888d --- /dev/null +++ b/packages/vue-icon/src/process-plan-requirements.ts @@ -0,0 +1,9 @@ +import { svg } from '@opentiny/vue-common' +import ProcessPlanRequirements from '@opentiny/vue-theme/svgs/process-plan-requirements.svg' + +export default () => + svg({ + name: 'IconProcessPlanRequirements', + component: ProcessPlanRequirements, + filledComponent: ProcessPlanRequirements + })() diff --git a/packages/vue-icon/src/process-plan-requirements/index.ts b/packages/vue-icon/src/process-plan-requirements/index.ts deleted file mode 100644 index 49dd4082dc..0000000000 --- a/packages/vue-icon/src/process-plan-requirements/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ProcessPlanRequirements from '@opentiny/vue-theme/svgs/process-plan-requirements.svg' - -export default () => svg({ name: 'IconProcessPlanRequirements', component: ProcessPlanRequirements })() diff --git a/packages/vue-icon/src/processing.ts b/packages/vue-icon/src/processing.ts new file mode 100644 index 0000000000..ef372785fb --- /dev/null +++ b/packages/vue-icon/src/processing.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Processing from '@opentiny/vue-theme/svgs/processing.svg' + +export default () => svg({ name: 'IconProcessing', component: Processing, filledComponent: Processing })() diff --git a/packages/vue-icon/src/processing/index.ts b/packages/vue-icon/src/processing/index.ts deleted file mode 100644 index 2ab0c98ec8..0000000000 --- a/packages/vue-icon/src/processing/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Processing from '@opentiny/vue-theme/svgs/processing.svg' - -export default () => svg({ name: 'IconProcessing', component: Processing })() diff --git a/packages/vue-icon/src/prompt-exclamation.ts b/packages/vue-icon/src/prompt-exclamation.ts new file mode 100644 index 0000000000..1438dd9556 --- /dev/null +++ b/packages/vue-icon/src/prompt-exclamation.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import PromptExclamation from '@opentiny/vue-theme/svgs/prompt-exclamation.svg' + +export default () => + svg({ name: 'IconPromptExclamation', component: PromptExclamation, filledComponent: PromptExclamation })() diff --git a/packages/vue-icon/src/prompt-exclamation/index.ts b/packages/vue-icon/src/prompt-exclamation/index.ts deleted file mode 100644 index 84c43cf432..0000000000 --- a/packages/vue-icon/src/prompt-exclamation/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PromptExclamation from '@opentiny/vue-theme/svgs/prompt-exclamation.svg' - -export default () => svg({ name: 'IconPromptExclamation', component: PromptExclamation })() diff --git a/packages/vue-icon/src/prompt.ts b/packages/vue-icon/src/prompt.ts new file mode 100644 index 0000000000..d15ac1b824 --- /dev/null +++ b/packages/vue-icon/src/prompt.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Prompt from '@opentiny/vue-theme/svgs/prompt.svg' + +export default () => svg({ name: 'IconPrompt', component: Prompt, filledComponent: Prompt })() diff --git a/packages/vue-icon/src/prompt/index.ts b/packages/vue-icon/src/prompt/index.ts deleted file mode 100644 index 161a9fd60e..0000000000 --- a/packages/vue-icon/src/prompt/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Prompt from '@opentiny/vue-theme/svgs/prompt.svg' - -export default () => svg({ name: 'IconPrompt', component: Prompt })() diff --git a/packages/vue-icon/src/public-home.ts b/packages/vue-icon/src/public-home.ts new file mode 100644 index 0000000000..2e64e4716c --- /dev/null +++ b/packages/vue-icon/src/public-home.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PublicHome from '@opentiny/vue-theme/svgs/public-home.svg' + +export default () => svg({ name: 'IconPublicHome', component: PublicHome, filledComponent: PublicHome })() diff --git a/packages/vue-icon/src/public-home/index.ts b/packages/vue-icon/src/public-home/index.ts deleted file mode 100644 index a7d3cc1540..0000000000 --- a/packages/vue-icon/src/public-home/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import PublicHome from '@opentiny/vue-theme/svgs/public-home.svg' - -export default () => svg({ name: 'IconPublicHome', component: PublicHome })() diff --git a/packages/vue-icon/src/public-notice.ts b/packages/vue-icon/src/public-notice.ts new file mode 100644 index 0000000000..e51c0098f0 --- /dev/null +++ b/packages/vue-icon/src/public-notice.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PublicNotice from '@opentiny/vue-theme/svgs/public-notice.svg' + +export default () => svg({ name: 'IconPublicNotice', component: PublicNotice, filledComponent: PublicNotice })() diff --git a/packages/vue-icon/src/public-notice/index.ts b/packages/vue-icon/src/public-notice/index.ts deleted file mode 100644 index fd7f15c0b9..0000000000 --- a/packages/vue-icon/src/public-notice/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import PublicNotice from '@opentiny/vue-theme/svgs/public-notice.svg' - -export default () => svg({ name: 'IconPublicNotice', component: PublicNotice })() diff --git a/packages/vue-icon/src/publish.ts b/packages/vue-icon/src/publish.ts new file mode 100644 index 0000000000..716125131e --- /dev/null +++ b/packages/vue-icon/src/publish.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Publish from '@opentiny/vue-theme/svgs/publish.svg' + +export default () => svg({ name: 'IconPublish', component: Publish, filledComponent: Publish })() diff --git a/packages/vue-icon/src/publish/index.ts b/packages/vue-icon/src/publish/index.ts deleted file mode 100644 index e0adc74160..0000000000 --- a/packages/vue-icon/src/publish/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import Publish from '@opentiny/vue-theme/svgs/publish.svg' - -export default () => svg({ name: 'IconPublish', component: Publish })() diff --git a/packages/vue-icon/src/purchase-planned-order.ts b/packages/vue-icon/src/purchase-planned-order.ts new file mode 100644 index 0000000000..d497e616e3 --- /dev/null +++ b/packages/vue-icon/src/purchase-planned-order.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import PurchasePlannedOrder from '@opentiny/vue-theme/svgs/purchase-planned-order.svg' + +export default () => + svg({ name: 'IconPurchasePlannedOrder', component: PurchasePlannedOrder, filledComponent: PurchasePlannedOrder })() diff --git a/packages/vue-icon/src/purchase-planned-order/index.ts b/packages/vue-icon/src/purchase-planned-order/index.ts deleted file mode 100644 index b8f07386b7..0000000000 --- a/packages/vue-icon/src/purchase-planned-order/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PurchasePlannedOrder from '@opentiny/vue-theme/svgs/purchase-planned-order.svg' - -export default () => svg({ name: 'IconPurchasePlannedOrder', component: PurchasePlannedOrder })() diff --git a/packages/vue-icon/src/pushpin-solid.ts b/packages/vue-icon/src/pushpin-solid.ts new file mode 100644 index 0000000000..5981d39bf7 --- /dev/null +++ b/packages/vue-icon/src/pushpin-solid.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PushpinSolid from '@opentiny/vue-theme/svgs/pushpin-solid.svg' + +export default () => svg({ name: 'IconPushpinSolid', component: PushpinSolid, filledComponent: PushpinSolid })() diff --git a/packages/vue-icon/src/pushpin-solid/index.ts b/packages/vue-icon/src/pushpin-solid/index.ts deleted file mode 100644 index 1721b67afd..0000000000 --- a/packages/vue-icon/src/pushpin-solid/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PushpinSolid from '@opentiny/vue-theme/svgs/pushpin-solid.svg' - -export default () => svg({ name: 'IconPushpinSolid', component: PushpinSolid })() diff --git a/packages/vue-icon/src/pushpin.ts b/packages/vue-icon/src/pushpin.ts new file mode 100644 index 0000000000..16024d3588 --- /dev/null +++ b/packages/vue-icon/src/pushpin.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Pushpin from '@opentiny/vue-theme/svgs/pushpin.svg' + +export default () => svg({ name: 'IconPushpin', component: Pushpin, filledComponent: Pushpin })() diff --git a/packages/vue-icon/src/pushpin/index.ts b/packages/vue-icon/src/pushpin/index.ts deleted file mode 100644 index 5703db2160..0000000000 --- a/packages/vue-icon/src/pushpin/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Pushpin from '@opentiny/vue-theme/svgs/pushpin.svg' - -export default () => svg({ name: 'IconPushpin', component: Pushpin })() diff --git a/packages/vue-icon/src/put-away.ts b/packages/vue-icon/src/put-away.ts new file mode 100644 index 0000000000..f6bb67d428 --- /dev/null +++ b/packages/vue-icon/src/put-away.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import PutAway from '@opentiny/vue-theme/svgs/put-away.svg' + +export default () => svg({ name: 'IconPutAway', component: PutAway, filledComponent: PutAway })() diff --git a/packages/vue-icon/src/put-away/index.ts b/packages/vue-icon/src/put-away/index.ts deleted file mode 100644 index f80611a897..0000000000 --- a/packages/vue-icon/src/put-away/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import PutAway from '@opentiny/vue-theme/svgs/put-away.svg' - -export default () => svg({ name: 'IconPutAway', component: PutAway })() diff --git a/packages/vue-icon/src/radio.ts b/packages/vue-icon/src/radio.ts new file mode 100644 index 0000000000..3407810980 --- /dev/null +++ b/packages/vue-icon/src/radio.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Radio from '@opentiny/vue-theme/svgs/radio.svg' + +export default () => svg({ name: 'IconRadio', component: Radio, filledComponent: Radio })() diff --git a/packages/vue-icon/src/radio/index.ts b/packages/vue-icon/src/radio/index.ts deleted file mode 100644 index c36f82548f..0000000000 --- a/packages/vue-icon/src/radio/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Radio from '@opentiny/vue-theme/svgs/radio.svg' - -export default () => svg({ name: 'IconRadio', component: Radio })() diff --git a/packages/vue-icon/src/radioselected.ts b/packages/vue-icon/src/radioselected.ts new file mode 100644 index 0000000000..04a2140beb --- /dev/null +++ b/packages/vue-icon/src/radioselected.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Radioselected from '@opentiny/vue-theme/svgs/radioselected.svg' + +export default () => svg({ name: 'IconRadioselected', component: Radioselected, filledComponent: Radioselected })() diff --git a/packages/vue-icon/src/radioselected/index.ts b/packages/vue-icon/src/radioselected/index.ts deleted file mode 100644 index 1ed3710166..0000000000 --- a/packages/vue-icon/src/radioselected/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Radioselected from '@opentiny/vue-theme/svgs/radioselected.svg' - -export default () => svg({ name: 'IconRadioselected', component: Radioselected })() diff --git a/packages/vue-icon/src/reactjs.ts b/packages/vue-icon/src/reactjs.ts new file mode 100644 index 0000000000..c83a909ac7 --- /dev/null +++ b/packages/vue-icon/src/reactjs.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Reactjs from '@opentiny/vue-theme/svgs/reactjs.svg' + +export default () => svg({ name: 'IconReactjs', component: Reactjs, filledComponent: Reactjs })() diff --git a/packages/vue-icon/src/reactjs/index.ts b/packages/vue-icon/src/reactjs/index.ts deleted file mode 100644 index 8608631935..0000000000 --- a/packages/vue-icon/src/reactjs/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Reactjs from '@opentiny/vue-theme/svgs/reactjs.svg' - -export default () => svg({ name: 'IconReactjs', component: Reactjs })() diff --git a/packages/vue-icon/src/redo.ts b/packages/vue-icon/src/redo.ts new file mode 100644 index 0000000000..182a271a2a --- /dev/null +++ b/packages/vue-icon/src/redo.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Redo from '@opentiny/vue-theme/svgs/redo.svg' + +export default () => svg({ name: 'IconRedo', component: Redo, filledComponent: Redo })() diff --git a/packages/vue-icon/src/redo/index.ts b/packages/vue-icon/src/redo/index.ts deleted file mode 100644 index f90bbb4bf6..0000000000 --- a/packages/vue-icon/src/redo/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Redo from '@opentiny/vue-theme/svgs/redo.svg' - -export default () => svg({ name: 'IconRedo', component: Redo })() diff --git a/packages/vue-icon/src/refres.ts b/packages/vue-icon/src/refres.ts new file mode 100644 index 0000000000..bc8e1249de --- /dev/null +++ b/packages/vue-icon/src/refres.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Refres from '@opentiny/vue-theme/svgs/refres.svg' + +export default () => svg({ name: 'IconRefres', component: Refres, filledComponent: Refres })() diff --git a/packages/vue-icon/src/refres/index.ts b/packages/vue-icon/src/refres/index.ts deleted file mode 100644 index 27a39f5483..0000000000 --- a/packages/vue-icon/src/refres/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Refres from '@opentiny/vue-theme/svgs/refres.svg' - -export default () => svg({ name: 'IconRefres', component: Refres })() diff --git a/packages/vue-icon/src/refresh.ts b/packages/vue-icon/src/refresh.ts new file mode 100644 index 0000000000..cb355eb426 --- /dev/null +++ b/packages/vue-icon/src/refresh.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Refresh from '@opentiny/vue-theme/svgs/refresh.svg' + +export default () => svg({ name: 'IconRefresh', component: Refresh, filledComponent: Refresh })() diff --git a/packages/vue-icon/src/refresh/index.ts b/packages/vue-icon/src/refresh/index.ts deleted file mode 100644 index ef77312984..0000000000 --- a/packages/vue-icon/src/refresh/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Refresh from '@opentiny/vue-theme/svgs/refresh.svg' - -export default () => svg({ name: 'IconRefresh', component: Refresh })() diff --git a/packages/vue-icon/src/renew.ts b/packages/vue-icon/src/renew.ts new file mode 100644 index 0000000000..c799dbac80 --- /dev/null +++ b/packages/vue-icon/src/renew.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Renew from '@opentiny/vue-theme/svgs/renew.svg' + +export default () => svg({ name: 'IconRenew', component: Renew, filledComponent: Renew })() diff --git a/packages/vue-icon/src/renew/index.ts b/packages/vue-icon/src/renew/index.ts deleted file mode 100644 index 4737966843..0000000000 --- a/packages/vue-icon/src/renew/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Renew from '@opentiny/vue-theme/svgs/renew.svg' - -export default () => svg({ name: 'IconRenew', component: Renew })() diff --git a/packages/vue-icon/src/repeat.ts b/packages/vue-icon/src/repeat.ts new file mode 100644 index 0000000000..3aac81cb81 --- /dev/null +++ b/packages/vue-icon/src/repeat.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Repeat from '@opentiny/vue-theme/svgs/repeat.svg' + +export default () => svg({ name: 'IconRepeat', component: Repeat, filledComponent: Repeat })() diff --git a/packages/vue-icon/src/repeat/index.ts b/packages/vue-icon/src/repeat/index.ts deleted file mode 100644 index a5860018af..0000000000 --- a/packages/vue-icon/src/repeat/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Repeat from '@opentiny/vue-theme/svgs/repeat.svg' - -export default () => svg({ name: 'IconRepeat', component: Repeat })() diff --git a/packages/vue-icon/src/replace.ts b/packages/vue-icon/src/replace.ts new file mode 100644 index 0000000000..3c6e236a96 --- /dev/null +++ b/packages/vue-icon/src/replace.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Replace from '@opentiny/vue-theme/svgs/replace.svg' + +export default () => svg({ name: 'IconReplace', component: Replace, filledComponent: Replace })() diff --git a/packages/vue-icon/src/replace/index.ts b/packages/vue-icon/src/replace/index.ts deleted file mode 100644 index 2a18629c74..0000000000 --- a/packages/vue-icon/src/replace/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Replace from '@opentiny/vue-theme/svgs/replace.svg' - -export default () => svg({ name: 'IconReplace', component: Replace })() diff --git a/packages/vue-icon/src/replies.ts b/packages/vue-icon/src/replies.ts new file mode 100644 index 0000000000..29cc2d0a34 --- /dev/null +++ b/packages/vue-icon/src/replies.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Replies from '@opentiny/vue-theme/svgs/replies.svg' + +export default () => svg({ name: 'IconReplies', component: Replies, filledComponent: Replies })() diff --git a/packages/vue-icon/src/replies/index.ts b/packages/vue-icon/src/replies/index.ts deleted file mode 100644 index d06aef2b38..0000000000 --- a/packages/vue-icon/src/replies/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Replies from '@opentiny/vue-theme/svgs/replies.svg' - -export default () => svg({ name: 'IconReplies', component: Replies })() diff --git a/packages/vue-icon/src/report-submission.ts b/packages/vue-icon/src/report-submission.ts new file mode 100644 index 0000000000..011a3b72fb --- /dev/null +++ b/packages/vue-icon/src/report-submission.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import ReportSubmission from '@opentiny/vue-theme/svgs/report-submission.svg' + +export default () => + svg({ name: 'IconReportSubmission', component: ReportSubmission, filledComponent: ReportSubmission })() diff --git a/packages/vue-icon/src/report-submission/index.ts b/packages/vue-icon/src/report-submission/index.ts deleted file mode 100644 index bf9dfef83a..0000000000 --- a/packages/vue-icon/src/report-submission/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ReportSubmission from '@opentiny/vue-theme/svgs/report-submission.svg' - -export default () => svg({ name: 'IconReportSubmission', component: ReportSubmission })() diff --git a/packages/vue-icon/src/requirements-planning.ts b/packages/vue-icon/src/requirements-planning.ts new file mode 100644 index 0000000000..f601490f92 --- /dev/null +++ b/packages/vue-icon/src/requirements-planning.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RequirementsPlanning from '@opentiny/vue-theme/svgs/requirements-planning.svg' + +export default () => + svg({ name: 'IconRequirementsPlanning', component: RequirementsPlanning, filledComponent: RequirementsPlanning })() diff --git a/packages/vue-icon/src/requirements-planning/index.ts b/packages/vue-icon/src/requirements-planning/index.ts deleted file mode 100644 index f51a6bdba2..0000000000 --- a/packages/vue-icon/src/requirements-planning/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RequirementsPlanning from '@opentiny/vue-theme/svgs/requirements-planning.svg' - -export default () => svg({ name: 'IconRequirementsPlanning', component: RequirementsPlanning })() diff --git a/packages/vue-icon/src/rich-text-add-column-after.ts b/packages/vue-icon/src/rich-text-add-column-after.ts new file mode 100644 index 0000000000..3aada454ff --- /dev/null +++ b/packages/vue-icon/src/rich-text-add-column-after.ts @@ -0,0 +1,9 @@ +import { svg } from '@opentiny/vue-common' +import RichTextAddColumnAfter from '@opentiny/vue-theme/svgs/rich-text-add-column-after.svg' + +export default () => + svg({ + name: 'IconRichTextAddColumnAfter', + component: RichTextAddColumnAfter, + filledComponent: RichTextAddColumnAfter + })() diff --git a/packages/vue-icon/src/rich-text-add-column-after/index.ts b/packages/vue-icon/src/rich-text-add-column-after/index.ts deleted file mode 100644 index 6a9028ce31..0000000000 --- a/packages/vue-icon/src/rich-text-add-column-after/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextAddColumnAfter from '@opentiny/vue-theme/svgs/rich-text-add-column-after.svg' - -export default svg({ name: 'IconRichTextAddColumnAfter', component: RichTextAddColumnAfter }) diff --git a/packages/vue-icon/src/rich-text-add-column-before.ts b/packages/vue-icon/src/rich-text-add-column-before.ts new file mode 100644 index 0000000000..60017653db --- /dev/null +++ b/packages/vue-icon/src/rich-text-add-column-before.ts @@ -0,0 +1,9 @@ +import { svg } from '@opentiny/vue-common' +import RichTextAddColumnBefore from '@opentiny/vue-theme/svgs/rich-text-add-column-before.svg' + +export default () => + svg({ + name: 'IconRichTextAddColumnBefore', + component: RichTextAddColumnBefore, + filledComponent: RichTextAddColumnBefore + })() diff --git a/packages/vue-icon/src/rich-text-add-column-before/index.ts b/packages/vue-icon/src/rich-text-add-column-before/index.ts deleted file mode 100644 index 2297b59cc1..0000000000 --- a/packages/vue-icon/src/rich-text-add-column-before/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextAddColumnBefore from '@opentiny/vue-theme/svgs/rich-text-add-column-before.svg' - -export default svg({ name: 'IconRichTextAddColumnBefore', component: RichTextAddColumnBefore }) diff --git a/packages/vue-icon/src/rich-text-add-row-after.ts b/packages/vue-icon/src/rich-text-add-row-after.ts new file mode 100644 index 0000000000..b108bffcc2 --- /dev/null +++ b/packages/vue-icon/src/rich-text-add-row-after.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextAddRowAfter from '@opentiny/vue-theme/svgs/rich-text-add-row-after.svg' + +export default () => + svg({ name: 'IconRichTextAddRowAfter', component: RichTextAddRowAfter, filledComponent: RichTextAddRowAfter })() diff --git a/packages/vue-icon/src/rich-text-add-row-after/index.ts b/packages/vue-icon/src/rich-text-add-row-after/index.ts deleted file mode 100644 index 57c1e89588..0000000000 --- a/packages/vue-icon/src/rich-text-add-row-after/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextAddRowAfter from '@opentiny/vue-theme/svgs/rich-text-add-row-after.svg' - -export default svg({ name: 'IconRichTextAddRowAfter', component: RichTextAddRowAfter }) diff --git a/packages/vue-icon/src/rich-text-add-row-before.ts b/packages/vue-icon/src/rich-text-add-row-before.ts new file mode 100644 index 0000000000..48f6c6cd13 --- /dev/null +++ b/packages/vue-icon/src/rich-text-add-row-before.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextAddRowBefore from '@opentiny/vue-theme/svgs/rich-text-add-row-before.svg' + +export default () => + svg({ name: 'IconRichTextAddRowBefore', component: RichTextAddRowBefore, filledComponent: RichTextAddRowBefore })() diff --git a/packages/vue-icon/src/rich-text-add-row-before/index.ts b/packages/vue-icon/src/rich-text-add-row-before/index.ts deleted file mode 100644 index a7648f1147..0000000000 --- a/packages/vue-icon/src/rich-text-add-row-before/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextAddRowBefore from '@opentiny/vue-theme/svgs/rich-text-add-row-before.svg' - -export default svg({ name: 'IconRichTextAddRowBefore', component: RichTextAddRowBefore }) diff --git a/packages/vue-icon/src/rich-text-align-center.ts b/packages/vue-icon/src/rich-text-align-center.ts new file mode 100644 index 0000000000..2de06b259d --- /dev/null +++ b/packages/vue-icon/src/rich-text-align-center.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextAlignCenter from '@opentiny/vue-theme/svgs/rich-text-align-center.svg' + +export default () => + svg({ name: 'IconRichTextAlignCenter', component: RichTextAlignCenter, filledComponent: RichTextAlignCenter })() diff --git a/packages/vue-icon/src/rich-text-align-center/index.ts b/packages/vue-icon/src/rich-text-align-center/index.ts deleted file mode 100644 index 3e1a7999c2..0000000000 --- a/packages/vue-icon/src/rich-text-align-center/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextAlignCenter from '@opentiny/vue-theme/svgs/rich-text-align-center.svg' - -export default svg({ name: 'IconRichTextAlignCenter', component: RichTextAlignCenter }) diff --git a/packages/vue-icon/src/rich-text-align-left.ts b/packages/vue-icon/src/rich-text-align-left.ts new file mode 100644 index 0000000000..2acab5b1f6 --- /dev/null +++ b/packages/vue-icon/src/rich-text-align-left.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextAlignLeft from '@opentiny/vue-theme/svgs/rich-text-align-left.svg' + +export default () => + svg({ name: 'IconRichTextAlignLeft', component: RichTextAlignLeft, filledComponent: RichTextAlignLeft })() diff --git a/packages/vue-icon/src/rich-text-align-left/index.ts b/packages/vue-icon/src/rich-text-align-left/index.ts deleted file mode 100644 index 7720abac7f..0000000000 --- a/packages/vue-icon/src/rich-text-align-left/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextAlignLeft from '@opentiny/vue-theme/svgs/rich-text-align-left.svg' - -export default svg({ name: 'IconRichTextAlignLeft', component: RichTextAlignLeft }) diff --git a/packages/vue-icon/src/rich-text-align-right.ts b/packages/vue-icon/src/rich-text-align-right.ts new file mode 100644 index 0000000000..db24a22f07 --- /dev/null +++ b/packages/vue-icon/src/rich-text-align-right.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextAlignRight from '@opentiny/vue-theme/svgs/rich-text-align-right.svg' + +export default () => + svg({ name: 'IconRichTextAlignRight', component: RichTextAlignRight, filledComponent: RichTextAlignRight })() diff --git a/packages/vue-icon/src/rich-text-align-right/index.ts b/packages/vue-icon/src/rich-text-align-right/index.ts deleted file mode 100644 index 7a327f5d7b..0000000000 --- a/packages/vue-icon/src/rich-text-align-right/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextAlignRight from '@opentiny/vue-theme/svgs/rich-text-align-right.svg' - -export default svg({ name: 'IconRichTextAlignRight', component: RichTextAlignRight }) diff --git a/packages/vue-icon/src/rich-text-bold.ts b/packages/vue-icon/src/rich-text-bold.ts new file mode 100644 index 0000000000..0d2be3aeca --- /dev/null +++ b/packages/vue-icon/src/rich-text-bold.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import RichTextBold from '@opentiny/vue-theme/svgs/rich-text-bold.svg' + +export default () => svg({ name: 'IconRichTextBold', component: RichTextBold, filledComponent: RichTextBold })() diff --git a/packages/vue-icon/src/rich-text-bold/index.ts b/packages/vue-icon/src/rich-text-bold/index.ts deleted file mode 100644 index 251751fb7b..0000000000 --- a/packages/vue-icon/src/rich-text-bold/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextBold from '@opentiny/vue-theme/svgs/rich-text-bold.svg' - -export default svg({ name: 'IconRichTextBold', component: RichTextBold }) diff --git a/packages/vue-icon/src/rich-text-code-block.ts b/packages/vue-icon/src/rich-text-code-block.ts new file mode 100644 index 0000000000..88843cb69e --- /dev/null +++ b/packages/vue-icon/src/rich-text-code-block.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextCodeBlock from '@opentiny/vue-theme/svgs/rich-text-code-block.svg' + +export default () => + svg({ name: 'IconRichTextCodeBlock', component: RichTextCodeBlock, filledComponent: RichTextCodeBlock })() diff --git a/packages/vue-icon/src/rich-text-code-block/index.ts b/packages/vue-icon/src/rich-text-code-block/index.ts deleted file mode 100644 index 0ee77e0d2d..0000000000 --- a/packages/vue-icon/src/rich-text-code-block/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextCodeBlock from '@opentiny/vue-theme/svgs/rich-text-code-block.svg' - -export default svg({ name: 'IconRichTextCodeBlock', component: RichTextCodeBlock }) diff --git a/packages/vue-icon/src/rich-text-code-view.ts b/packages/vue-icon/src/rich-text-code-view.ts new file mode 100644 index 0000000000..1550b929d3 --- /dev/null +++ b/packages/vue-icon/src/rich-text-code-view.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextCodeView from '@opentiny/vue-theme/svgs/rich-text-code-view.svg' + +export default () => + svg({ name: 'IconRichTextCodeView', component: RichTextCodeView, filledComponent: RichTextCodeView })() diff --git a/packages/vue-icon/src/rich-text-code-view/index.ts b/packages/vue-icon/src/rich-text-code-view/index.ts deleted file mode 100644 index 89e278f18b..0000000000 --- a/packages/vue-icon/src/rich-text-code-view/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextCodeView from '@opentiny/vue-theme/svgs/rich-text-code-view.svg' - -export default svg({ name: 'IconRichTextCodeView', component: RichTextCodeView }) diff --git a/packages/vue-icon/src/rich-text-color.ts b/packages/vue-icon/src/rich-text-color.ts new file mode 100644 index 0000000000..c907e0e8d1 --- /dev/null +++ b/packages/vue-icon/src/rich-text-color.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import RichTextColor from '@opentiny/vue-theme/svgs/rich-text-color.svg' + +export default () => svg({ name: 'IconRichTextColor', component: RichTextColor, filledComponent: RichTextColor })() diff --git a/packages/vue-icon/src/rich-text-color/index.ts b/packages/vue-icon/src/rich-text-color/index.ts deleted file mode 100644 index d5d43d2106..0000000000 --- a/packages/vue-icon/src/rich-text-color/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextColor from '@opentiny/vue-theme/svgs/rich-text-color.svg' - -export default svg({ name: 'IconRichTextColor', component: RichTextColor }) diff --git a/packages/vue-icon/src/rich-text-delete-column.ts b/packages/vue-icon/src/rich-text-delete-column.ts new file mode 100644 index 0000000000..3adc420785 --- /dev/null +++ b/packages/vue-icon/src/rich-text-delete-column.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextDeleteColumn from '@opentiny/vue-theme/svgs/rich-text-delete-column.svg' + +export default () => + svg({ name: 'IconRichTextDeleteColumn', component: RichTextDeleteColumn, filledComponent: RichTextDeleteColumn })() diff --git a/packages/vue-icon/src/rich-text-delete-column/index.ts b/packages/vue-icon/src/rich-text-delete-column/index.ts deleted file mode 100644 index dc3f5fd24d..0000000000 --- a/packages/vue-icon/src/rich-text-delete-column/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextDeleteColumn from '@opentiny/vue-theme/svgs/rich-text-delete-column.svg' - -export default svg({ name: 'IconRichTextDeleteColumn', component: RichTextDeleteColumn }) diff --git a/packages/vue-icon/src/rich-text-delete-row.ts b/packages/vue-icon/src/rich-text-delete-row.ts new file mode 100644 index 0000000000..a33ceb92cb --- /dev/null +++ b/packages/vue-icon/src/rich-text-delete-row.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextDeleteRow from '@opentiny/vue-theme/svgs/rich-text-delete-row.svg' + +export default () => + svg({ name: 'IconRichTextDeleteRow', component: RichTextDeleteRow, filledComponent: RichTextDeleteRow })() diff --git a/packages/vue-icon/src/rich-text-delete-row/index.ts b/packages/vue-icon/src/rich-text-delete-row/index.ts deleted file mode 100644 index afd2f8b790..0000000000 --- a/packages/vue-icon/src/rich-text-delete-row/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextDeleteRow from '@opentiny/vue-theme/svgs/rich-text-delete-row.svg' - -export default svg({ name: 'IconRichTextDeleteRow', component: RichTextDeleteRow }) diff --git a/packages/vue-icon/src/rich-text-delete-table.ts b/packages/vue-icon/src/rich-text-delete-table.ts new file mode 100644 index 0000000000..76259fd857 --- /dev/null +++ b/packages/vue-icon/src/rich-text-delete-table.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextDeleteTable from '@opentiny/vue-theme/svgs/rich-text-delete-table.svg' + +export default () => + svg({ name: 'IconRichTextDeleteTable', component: RichTextDeleteTable, filledComponent: RichTextDeleteTable })() diff --git a/packages/vue-icon/src/rich-text-delete-table/index.ts b/packages/vue-icon/src/rich-text-delete-table/index.ts deleted file mode 100644 index db6aea3d6f..0000000000 --- a/packages/vue-icon/src/rich-text-delete-table/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextDeleteTable from '@opentiny/vue-theme/svgs/rich-text-delete-table.svg' - -export default svg({ name: 'IconRichTextDeleteTable', component: RichTextDeleteTable }) diff --git a/packages/vue-icon/src/rich-text-font-size.ts b/packages/vue-icon/src/rich-text-font-size.ts new file mode 100644 index 0000000000..6c2424a4e1 --- /dev/null +++ b/packages/vue-icon/src/rich-text-font-size.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextFontSize from '@opentiny/vue-theme/svgs/rich-text-font-size.svg' + +export default () => + svg({ name: 'IconRichTextFontSize', component: RichTextFontSize, filledComponent: RichTextFontSize })() diff --git a/packages/vue-icon/src/rich-text-font-size/index.ts b/packages/vue-icon/src/rich-text-font-size/index.ts deleted file mode 100644 index 04d991e7dc..0000000000 --- a/packages/vue-icon/src/rich-text-font-size/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextFontSize from '@opentiny/vue-theme/svgs/rich-text-font-size.svg' - -export default svg({ name: 'IconRichTextFontSize', component: RichTextFontSize }) diff --git a/packages/vue-icon/src/rich-text-format-clear.ts b/packages/vue-icon/src/rich-text-format-clear.ts new file mode 100644 index 0000000000..eecaa4127f --- /dev/null +++ b/packages/vue-icon/src/rich-text-format-clear.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextFormatClear from '@opentiny/vue-theme/svgs/rich-text-format-clear.svg' + +export default () => + svg({ name: 'IconRichTextFormatClear', component: RichTextFormatClear, filledComponent: RichTextFormatClear })() diff --git a/packages/vue-icon/src/rich-text-format-clear/index.ts b/packages/vue-icon/src/rich-text-format-clear/index.ts deleted file mode 100644 index 58644dd1b6..0000000000 --- a/packages/vue-icon/src/rich-text-format-clear/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextFormatClear from '@opentiny/vue-theme/svgs/rich-text-format-clear.svg' - -export default svg({ name: 'IconRichTextFormatClear', component: RichTextFormatClear }) diff --git a/packages/vue-icon/src/rich-text-h-1.ts b/packages/vue-icon/src/rich-text-h-1.ts new file mode 100644 index 0000000000..6fb7259abf --- /dev/null +++ b/packages/vue-icon/src/rich-text-h-1.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import RichTextH1 from '@opentiny/vue-theme/svgs/rich-text-h-1.svg' + +export default () => svg({ name: 'IconRichTextH1', component: RichTextH1, filledComponent: RichTextH1 })() diff --git a/packages/vue-icon/src/rich-text-h-2.ts b/packages/vue-icon/src/rich-text-h-2.ts new file mode 100644 index 0000000000..896d7d1322 --- /dev/null +++ b/packages/vue-icon/src/rich-text-h-2.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import RichTextH2 from '@opentiny/vue-theme/svgs/rich-text-h-2.svg' + +export default () => svg({ name: 'IconRichTextH2', component: RichTextH2, filledComponent: RichTextH2 })() diff --git a/packages/vue-icon/src/rich-text-h-3.ts b/packages/vue-icon/src/rich-text-h-3.ts new file mode 100644 index 0000000000..f406156ba7 --- /dev/null +++ b/packages/vue-icon/src/rich-text-h-3.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import RichTextH3 from '@opentiny/vue-theme/svgs/rich-text-h-3.svg' + +export default () => svg({ name: 'IconRichTextH3', component: RichTextH3, filledComponent: RichTextH3 })() diff --git a/packages/vue-icon/src/rich-text-h-4.ts b/packages/vue-icon/src/rich-text-h-4.ts new file mode 100644 index 0000000000..499f1e5b52 --- /dev/null +++ b/packages/vue-icon/src/rich-text-h-4.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import RichTextH4 from '@opentiny/vue-theme/svgs/rich-text-h-4.svg' + +export default () => svg({ name: 'IconRichTextH4', component: RichTextH4, filledComponent: RichTextH4 })() diff --git a/packages/vue-icon/src/rich-text-h-5.ts b/packages/vue-icon/src/rich-text-h-5.ts new file mode 100644 index 0000000000..3498570ca3 --- /dev/null +++ b/packages/vue-icon/src/rich-text-h-5.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import RichTextH5 from '@opentiny/vue-theme/svgs/rich-text-h-5.svg' + +export default () => svg({ name: 'IconRichTextH5', component: RichTextH5, filledComponent: RichTextH5 })() diff --git a/packages/vue-icon/src/rich-text-h-6.ts b/packages/vue-icon/src/rich-text-h-6.ts new file mode 100644 index 0000000000..7c4171704b --- /dev/null +++ b/packages/vue-icon/src/rich-text-h-6.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import RichTextH6 from '@opentiny/vue-theme/svgs/rich-text-h-6.svg' + +export default () => svg({ name: 'IconRichTextH6', component: RichTextH6, filledComponent: RichTextH6 })() diff --git a/packages/vue-icon/src/rich-text-h1/index.ts b/packages/vue-icon/src/rich-text-h1/index.ts deleted file mode 100644 index f624a8f39c..0000000000 --- a/packages/vue-icon/src/rich-text-h1/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextH1 from '@opentiny/vue-theme/svgs/rich-text-h-1.svg' - -export default svg({ name: 'IconRichTextH1', component: RichTextH1 }) diff --git a/packages/vue-icon/src/rich-text-h2/index.ts b/packages/vue-icon/src/rich-text-h2/index.ts deleted file mode 100644 index 2fbe884fd5..0000000000 --- a/packages/vue-icon/src/rich-text-h2/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextH2 from '@opentiny/vue-theme/svgs/rich-text-h-2.svg' - -export default svg({ name: 'IconRichTextH2', component: RichTextH2 }) diff --git a/packages/vue-icon/src/rich-text-h3/index.ts b/packages/vue-icon/src/rich-text-h3/index.ts deleted file mode 100644 index 9118f1170c..0000000000 --- a/packages/vue-icon/src/rich-text-h3/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextH3 from '@opentiny/vue-theme/svgs/rich-text-h-3.svg' - -export default svg({ name: 'IconRichTextH3', component: RichTextH3 }) diff --git a/packages/vue-icon/src/rich-text-h4/index.ts b/packages/vue-icon/src/rich-text-h4/index.ts deleted file mode 100644 index 6650d49f31..0000000000 --- a/packages/vue-icon/src/rich-text-h4/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextH4 from '@opentiny/vue-theme/svgs/rich-text-h-4.svg' - -export default svg({ name: 'IconRichTextH4', component: RichTextH4 }) diff --git a/packages/vue-icon/src/rich-text-h5/index.ts b/packages/vue-icon/src/rich-text-h5/index.ts deleted file mode 100644 index d61aaf9930..0000000000 --- a/packages/vue-icon/src/rich-text-h5/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextH5 from '@opentiny/vue-theme/svgs/rich-text-h-5.svg' - -export default svg({ name: 'IconRichTextH5', component: RichTextH5 }) diff --git a/packages/vue-icon/src/rich-text-h6/index.ts b/packages/vue-icon/src/rich-text-h6/index.ts deleted file mode 100644 index 6453b29eb3..0000000000 --- a/packages/vue-icon/src/rich-text-h6/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextH6 from '@opentiny/vue-theme/svgs/rich-text-h-6.svg' - -export default svg({ name: 'IconRichTextH6', component: RichTextH6 }) diff --git a/packages/vue-icon/src/rich-text-heading.ts b/packages/vue-icon/src/rich-text-heading.ts new file mode 100644 index 0000000000..b9e52c2212 --- /dev/null +++ b/packages/vue-icon/src/rich-text-heading.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextHeading from '@opentiny/vue-theme/svgs/rich-text-heading.svg' + +export default () => + svg({ name: 'IconRichTextHeading', component: RichTextHeading, filledComponent: RichTextHeading })() diff --git a/packages/vue-icon/src/rich-text-heading/index.ts b/packages/vue-icon/src/rich-text-heading/index.ts deleted file mode 100644 index e80d26497d..0000000000 --- a/packages/vue-icon/src/rich-text-heading/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextHeading from '@opentiny/vue-theme/svgs/rich-text-heading.svg' - -export default svg({ name: 'IconRichTextHeading', component: RichTextHeading }) diff --git a/packages/vue-icon/src/rich-text-high-light.ts b/packages/vue-icon/src/rich-text-high-light.ts new file mode 100644 index 0000000000..f166605990 --- /dev/null +++ b/packages/vue-icon/src/rich-text-high-light.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextHighLight from '@opentiny/vue-theme/svgs/rich-text-high-light.svg' + +export default () => + svg({ name: 'IconRichTextHighLight', component: RichTextHighLight, filledComponent: RichTextHighLight })() diff --git a/packages/vue-icon/src/rich-text-high-light/index.ts b/packages/vue-icon/src/rich-text-high-light/index.ts deleted file mode 100644 index f9e96797ec..0000000000 --- a/packages/vue-icon/src/rich-text-high-light/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextHighLight from '@opentiny/vue-theme/svgs/rich-text-high-light.svg' - -export default svg({ name: 'IconRichTextHighLight', component: RichTextHighLight }) diff --git a/packages/vue-icon/src/rich-text-image.ts b/packages/vue-icon/src/rich-text-image.ts new file mode 100644 index 0000000000..876dec1014 --- /dev/null +++ b/packages/vue-icon/src/rich-text-image.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import RichTextImage from '@opentiny/vue-theme/svgs/rich-text-image.svg' + +export default () => svg({ name: 'IconRichTextImage', component: RichTextImage, filledComponent: RichTextImage })() diff --git a/packages/vue-icon/src/rich-text-image/index.ts b/packages/vue-icon/src/rich-text-image/index.ts deleted file mode 100644 index 0022f1dee3..0000000000 --- a/packages/vue-icon/src/rich-text-image/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextImage from '@opentiny/vue-theme/svgs/rich-text-image.svg' - -export default svg({ name: 'IconRichTextImage', component: RichTextImage }) diff --git a/packages/vue-icon/src/rich-text-italic.ts b/packages/vue-icon/src/rich-text-italic.ts new file mode 100644 index 0000000000..0de2ad157e --- /dev/null +++ b/packages/vue-icon/src/rich-text-italic.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import RichTextItalic from '@opentiny/vue-theme/svgs/rich-text-italic.svg' + +export default () => svg({ name: 'IconRichTextItalic', component: RichTextItalic, filledComponent: RichTextItalic })() diff --git a/packages/vue-icon/src/rich-text-italic/index.ts b/packages/vue-icon/src/rich-text-italic/index.ts deleted file mode 100644 index cb2de0e19f..0000000000 --- a/packages/vue-icon/src/rich-text-italic/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextHighItalic from '@opentiny/vue-theme/svgs/rich-text-italic.svg' - -export default svg({ name: 'IconRichTextHighItalic', component: RichTextHighItalic }) diff --git a/packages/vue-icon/src/rich-text-line-height.ts b/packages/vue-icon/src/rich-text-line-height.ts new file mode 100644 index 0000000000..1e90def134 --- /dev/null +++ b/packages/vue-icon/src/rich-text-line-height.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextLineHeight from '@opentiny/vue-theme/svgs/rich-text-line-height.svg' + +export default () => + svg({ name: 'IconRichTextLineHeight', component: RichTextLineHeight, filledComponent: RichTextLineHeight })() diff --git a/packages/vue-icon/src/rich-text-line-height/index.ts b/packages/vue-icon/src/rich-text-line-height/index.ts deleted file mode 100644 index 70349d66f8..0000000000 --- a/packages/vue-icon/src/rich-text-line-height/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextLineHeight from '@opentiny/vue-theme/svgs/rich-text-line-height.svg' - -export default svg({ name: 'IconRichTextLineHeight', component: RichTextLineHeight }) diff --git a/packages/vue-icon/src/rich-text-link-unlink.ts b/packages/vue-icon/src/rich-text-link-unlink.ts new file mode 100644 index 0000000000..bcae6d6441 --- /dev/null +++ b/packages/vue-icon/src/rich-text-link-unlink.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextLinkUnlink from '@opentiny/vue-theme/svgs/rich-text-link-unlink.svg' + +export default () => + svg({ name: 'IconRichTextLinkUnlink', component: RichTextLinkUnlink, filledComponent: RichTextLinkUnlink })() diff --git a/packages/vue-icon/src/rich-text-link-unlink/index.ts b/packages/vue-icon/src/rich-text-link-unlink/index.ts deleted file mode 100644 index b0be47a51f..0000000000 --- a/packages/vue-icon/src/rich-text-link-unlink/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextLinkUnlink from '@opentiny/vue-theme/svgs/rich-text-link-unlink.svg' - -export default svg({ name: 'IconRichTextLinkUnlink', component: RichTextLinkUnlink }) diff --git a/packages/vue-icon/src/rich-text-link.ts b/packages/vue-icon/src/rich-text-link.ts new file mode 100644 index 0000000000..881ba7a638 --- /dev/null +++ b/packages/vue-icon/src/rich-text-link.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import RichTextLink from '@opentiny/vue-theme/svgs/rich-text-link.svg' + +export default () => svg({ name: 'IconRichTextLink', component: RichTextLink, filledComponent: RichTextLink })() diff --git a/packages/vue-icon/src/rich-text-link/index.ts b/packages/vue-icon/src/rich-text-link/index.ts deleted file mode 100644 index 5aef095b08..0000000000 --- a/packages/vue-icon/src/rich-text-link/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextLink from '@opentiny/vue-theme/svgs/rich-text-link.svg' - -export default svg({ name: 'IconRichTextLink', component: RichTextLink }) diff --git a/packages/vue-icon/src/rich-text-list-ordered.ts b/packages/vue-icon/src/rich-text-list-ordered.ts new file mode 100644 index 0000000000..51c66626f1 --- /dev/null +++ b/packages/vue-icon/src/rich-text-list-ordered.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextListOrdered from '@opentiny/vue-theme/svgs/rich-text-list-ordered.svg' + +export default () => + svg({ name: 'IconRichTextListOrdered', component: RichTextListOrdered, filledComponent: RichTextListOrdered })() diff --git a/packages/vue-icon/src/rich-text-list-ordered/index.ts b/packages/vue-icon/src/rich-text-list-ordered/index.ts deleted file mode 100644 index 9a060eb53d..0000000000 --- a/packages/vue-icon/src/rich-text-list-ordered/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextListOrdered from '@opentiny/vue-theme/svgs/rich-text-list-ordered.svg' - -export default svg({ name: 'IconRichTextListOrdered', component: RichTextListOrdered }) diff --git a/packages/vue-icon/src/rich-text-list-unordered.ts b/packages/vue-icon/src/rich-text-list-unordered.ts new file mode 100644 index 0000000000..0364be3c13 --- /dev/null +++ b/packages/vue-icon/src/rich-text-list-unordered.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextListUnordered from '@opentiny/vue-theme/svgs/rich-text-list-unordered.svg' + +export default () => + svg({ name: 'IconRichTextListUnordered', component: RichTextListUnordered, filledComponent: RichTextListUnordered })() diff --git a/packages/vue-icon/src/rich-text-list-unordered/index.ts b/packages/vue-icon/src/rich-text-list-unordered/index.ts deleted file mode 100644 index 595a3d5540..0000000000 --- a/packages/vue-icon/src/rich-text-list-unordered/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextListUnordered from '@opentiny/vue-theme/svgs/rich-text-list-unordered.svg' - -export default svg({ name: 'IconRichTextListUnordered', component: RichTextListUnordered }) diff --git a/packages/vue-icon/src/rich-text-merge-cells-vertical.ts b/packages/vue-icon/src/rich-text-merge-cells-vertical.ts new file mode 100644 index 0000000000..2119ba26bb --- /dev/null +++ b/packages/vue-icon/src/rich-text-merge-cells-vertical.ts @@ -0,0 +1,9 @@ +import { svg } from '@opentiny/vue-common' +import RichTextMergeCellsVertical from '@opentiny/vue-theme/svgs/rich-text-merge-cells-vertical.svg' + +export default () => + svg({ + name: 'IconRichTextMergeCellsVertical', + component: RichTextMergeCellsVertical, + filledComponent: RichTextMergeCellsVertical + })() diff --git a/packages/vue-icon/src/rich-text-merge-cells-vertical/index.ts b/packages/vue-icon/src/rich-text-merge-cells-vertical/index.ts deleted file mode 100644 index 8f03e6c8c1..0000000000 --- a/packages/vue-icon/src/rich-text-merge-cells-vertical/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextMergeCellsVertical from '@opentiny/vue-theme/svgs/rich-text-merge-cells-vertical.svg' - -export default svg({ name: 'IconRichTextMergeCellsVertical', component: RichTextMergeCellsVertical }) diff --git a/packages/vue-icon/src/rich-text-merge-cells.ts b/packages/vue-icon/src/rich-text-merge-cells.ts new file mode 100644 index 0000000000..5155cc6e54 --- /dev/null +++ b/packages/vue-icon/src/rich-text-merge-cells.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextMergeCells from '@opentiny/vue-theme/svgs/rich-text-merge-cells.svg' + +export default () => + svg({ name: 'IconRichTextMergeCells', component: RichTextMergeCells, filledComponent: RichTextMergeCells })() diff --git a/packages/vue-icon/src/rich-text-merge-cells/index.ts b/packages/vue-icon/src/rich-text-merge-cells/index.ts deleted file mode 100644 index 34d17a451e..0000000000 --- a/packages/vue-icon/src/rich-text-merge-cells/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextMergeCells from '@opentiny/vue-theme/svgs/rich-text-merge-cells.svg' - -export default svg({ name: 'IconRichTextMergeCells', component: RichTextMergeCells }) diff --git a/packages/vue-icon/src/rich-text-node-delete.ts b/packages/vue-icon/src/rich-text-node-delete.ts new file mode 100644 index 0000000000..1f14a5a050 --- /dev/null +++ b/packages/vue-icon/src/rich-text-node-delete.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextNodeDelete from '@opentiny/vue-theme/svgs/rich-text-node-delete.svg' + +export default () => + svg({ name: 'IconRichTextNodeDelete', component: RichTextNodeDelete, filledComponent: RichTextNodeDelete })() diff --git a/packages/vue-icon/src/rich-text-node-delete/index.ts b/packages/vue-icon/src/rich-text-node-delete/index.ts deleted file mode 100644 index 385e02ab54..0000000000 --- a/packages/vue-icon/src/rich-text-node-delete/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextNodeDelete from '@opentiny/vue-theme/svgs/rich-text-node-delete.svg' - -export default svg({ name: 'IconRichTextNodeDelete', component: RichTextNodeDelete }) diff --git a/packages/vue-icon/src/rich-text-paragraph.ts b/packages/vue-icon/src/rich-text-paragraph.ts new file mode 100644 index 0000000000..ed8012cb91 --- /dev/null +++ b/packages/vue-icon/src/rich-text-paragraph.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextParagraph from '@opentiny/vue-theme/svgs/rich-text-paragraph.svg' + +export default () => + svg({ name: 'IconRichTextParagraph', component: RichTextParagraph, filledComponent: RichTextParagraph })() diff --git a/packages/vue-icon/src/rich-text-paragraph/index.ts b/packages/vue-icon/src/rich-text-paragraph/index.ts deleted file mode 100644 index 85eda23f83..0000000000 --- a/packages/vue-icon/src/rich-text-paragraph/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextParagraph from '@opentiny/vue-theme/svgs/rich-text-paragraph.svg' - -export default svg({ name: 'IconRichTextParagraph', component: RichTextParagraph }) diff --git a/packages/vue-icon/src/rich-text-quote-text.ts b/packages/vue-icon/src/rich-text-quote-text.ts new file mode 100644 index 0000000000..ab4799af1e --- /dev/null +++ b/packages/vue-icon/src/rich-text-quote-text.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextQuoteText from '@opentiny/vue-theme/svgs/rich-text-quote-text.svg' + +export default () => + svg({ name: 'IconRichTextQuoteText', component: RichTextQuoteText, filledComponent: RichTextQuoteText })() diff --git a/packages/vue-icon/src/rich-text-quote-text/index.ts b/packages/vue-icon/src/rich-text-quote-text/index.ts deleted file mode 100644 index 587d8a0a09..0000000000 --- a/packages/vue-icon/src/rich-text-quote-text/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextQuoteText from '@opentiny/vue-theme/svgs/rich-text-quote-text.svg' - -export default svg({ name: 'IconRichTextQuoteText', component: RichTextQuoteText }) diff --git a/packages/vue-icon/src/rich-text-quote-text1.ts b/packages/vue-icon/src/rich-text-quote-text1.ts new file mode 100644 index 0000000000..e3af3f30d0 --- /dev/null +++ b/packages/vue-icon/src/rich-text-quote-text1.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextQuoteText1 from '@opentiny/vue-theme/svgs/rich-text-quote-text1.svg' + +export default () => + svg({ name: 'IconRichTextQuoteText1', component: RichTextQuoteText1, filledComponent: RichTextQuoteText1 })() diff --git a/packages/vue-icon/src/rich-text-redo.ts b/packages/vue-icon/src/rich-text-redo.ts new file mode 100644 index 0000000000..1c5edee23f --- /dev/null +++ b/packages/vue-icon/src/rich-text-redo.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import RichTextRedo from '@opentiny/vue-theme/svgs/rich-text-redo.svg' + +export default () => svg({ name: 'IconRichTextRedo', component: RichTextRedo, filledComponent: RichTextRedo })() diff --git a/packages/vue-icon/src/rich-text-redo/index.ts b/packages/vue-icon/src/rich-text-redo/index.ts deleted file mode 100644 index 3f8c0eea67..0000000000 --- a/packages/vue-icon/src/rich-text-redo/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextRedo from '@opentiny/vue-theme/svgs/rich-text-redo.svg' - -export default svg({ name: 'IconRichTextRedo', component: RichTextRedo }) diff --git a/packages/vue-icon/src/rich-text-split-cells-horizontal.ts b/packages/vue-icon/src/rich-text-split-cells-horizontal.ts new file mode 100644 index 0000000000..2d58fdcd0c --- /dev/null +++ b/packages/vue-icon/src/rich-text-split-cells-horizontal.ts @@ -0,0 +1,9 @@ +import { svg } from '@opentiny/vue-common' +import RichTextSplitCellsHorizontal from '@opentiny/vue-theme/svgs/rich-text-split-cells-horizontal.svg' + +export default () => + svg({ + name: 'IconRichTextSplitCellsHorizontal', + component: RichTextSplitCellsHorizontal, + filledComponent: RichTextSplitCellsHorizontal + })() diff --git a/packages/vue-icon/src/rich-text-split-cells-horizontal/index.ts b/packages/vue-icon/src/rich-text-split-cells-horizontal/index.ts deleted file mode 100644 index 36cd2c2c39..0000000000 --- a/packages/vue-icon/src/rich-text-split-cells-horizontal/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextSplitCellsHorizontal from '@opentiny/vue-theme/svgs/rich-text-split-cells-horizontal.svg' - -export default svg({ name: 'IconRichTextSplitCellsHorizontal', component: RichTextSplitCellsHorizontal }) diff --git a/packages/vue-icon/src/rich-text-split-cells-vertical.ts b/packages/vue-icon/src/rich-text-split-cells-vertical.ts new file mode 100644 index 0000000000..91603dfd2e --- /dev/null +++ b/packages/vue-icon/src/rich-text-split-cells-vertical.ts @@ -0,0 +1,9 @@ +import { svg } from '@opentiny/vue-common' +import RichTextSplitCellsVertical from '@opentiny/vue-theme/svgs/rich-text-split-cells-vertical.svg' + +export default () => + svg({ + name: 'IconRichTextSplitCellsVertical', + component: RichTextSplitCellsVertical, + filledComponent: RichTextSplitCellsVertical + })() diff --git a/packages/vue-icon/src/rich-text-split-cells-vertical/index.ts b/packages/vue-icon/src/rich-text-split-cells-vertical/index.ts deleted file mode 100644 index 01551bddc7..0000000000 --- a/packages/vue-icon/src/rich-text-split-cells-vertical/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextSplitCellsVertical from '@opentiny/vue-theme/svgs/rich-text-split-cells-vertical.svg' - -export default svg({ name: 'IconRichTextSplitCellsVertical', component: RichTextSplitCellsVertical }) diff --git a/packages/vue-icon/src/rich-text-strike-through/index.ts b/packages/vue-icon/src/rich-text-strike-through/index.ts deleted file mode 100644 index 2c8b400bc5..0000000000 --- a/packages/vue-icon/src/rich-text-strike-through/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextStrikeThrough from '@opentiny/vue-theme/svgs/rich-text-strikethrough.svg' - -export default svg({ name: 'IconRichTextStrikeThrough', component: RichTextStrikeThrough }) diff --git a/packages/vue-icon/src/rich-text-strikethrough.ts b/packages/vue-icon/src/rich-text-strikethrough.ts new file mode 100644 index 0000000000..d3b18b94cb --- /dev/null +++ b/packages/vue-icon/src/rich-text-strikethrough.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextStrikethrough from '@opentiny/vue-theme/svgs/rich-text-strikethrough.svg' + +export default () => + svg({ name: 'IconRichTextStrikethrough', component: RichTextStrikethrough, filledComponent: RichTextStrikethrough })() diff --git a/packages/vue-icon/src/rich-text-subscript.ts b/packages/vue-icon/src/rich-text-subscript.ts new file mode 100644 index 0000000000..561ef9d997 --- /dev/null +++ b/packages/vue-icon/src/rich-text-subscript.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextSubscript from '@opentiny/vue-theme/svgs/rich-text-subscript.svg' + +export default () => + svg({ name: 'IconRichTextSubscript', component: RichTextSubscript, filledComponent: RichTextSubscript })() diff --git a/packages/vue-icon/src/rich-text-subscript/index.ts b/packages/vue-icon/src/rich-text-subscript/index.ts deleted file mode 100644 index ded19f53e9..0000000000 --- a/packages/vue-icon/src/rich-text-subscript/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextSubScript from '@opentiny/vue-theme/svgs/rich-text-subscript.svg' - -export default svg({ name: 'IconRichTextSubScript', component: RichTextSubScript }) diff --git a/packages/vue-icon/src/rich-text-superscript.ts b/packages/vue-icon/src/rich-text-superscript.ts new file mode 100644 index 0000000000..424b44ddde --- /dev/null +++ b/packages/vue-icon/src/rich-text-superscript.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextSuperscript from '@opentiny/vue-theme/svgs/rich-text-superscript.svg' + +export default () => + svg({ name: 'IconRichTextSuperscript', component: RichTextSuperscript, filledComponent: RichTextSuperscript })() diff --git a/packages/vue-icon/src/rich-text-superscript/index.ts b/packages/vue-icon/src/rich-text-superscript/index.ts deleted file mode 100644 index 7974a5e853..0000000000 --- a/packages/vue-icon/src/rich-text-superscript/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextSuperScript from '@opentiny/vue-theme/svgs/rich-text-superscript.svg' - -export default svg({ name: 'IconRichTextSuperScript', component: RichTextSuperScript }) diff --git a/packages/vue-icon/src/rich-text-table-2.ts b/packages/vue-icon/src/rich-text-table-2.ts new file mode 100644 index 0000000000..88323ebc0a --- /dev/null +++ b/packages/vue-icon/src/rich-text-table-2.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import RichTextTable2 from '@opentiny/vue-theme/svgs/rich-text-table-2.svg' + +export default () => svg({ name: 'IconRichTextTable2', component: RichTextTable2, filledComponent: RichTextTable2 })() diff --git a/packages/vue-icon/src/rich-text-table-drop-ico.ts b/packages/vue-icon/src/rich-text-table-drop-ico.ts new file mode 100644 index 0000000000..4e13ee73a7 --- /dev/null +++ b/packages/vue-icon/src/rich-text-table-drop-ico.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextTableDropIco from '@opentiny/vue-theme/svgs/rich-text-table-drop-ico.svg' + +export default () => + svg({ name: 'IconRichTextTableDropIco', component: RichTextTableDropIco, filledComponent: RichTextTableDropIco })() diff --git a/packages/vue-icon/src/rich-text-table.ts b/packages/vue-icon/src/rich-text-table.ts new file mode 100644 index 0000000000..0e335fbd05 --- /dev/null +++ b/packages/vue-icon/src/rich-text-table.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import RichTextTable from '@opentiny/vue-theme/svgs/rich-text-table.svg' + +export default () => svg({ name: 'IconRichTextTable', component: RichTextTable, filledComponent: RichTextTable })() diff --git a/packages/vue-icon/src/rich-text-table/index.ts b/packages/vue-icon/src/rich-text-table/index.ts deleted file mode 100644 index 516f303471..0000000000 --- a/packages/vue-icon/src/rich-text-table/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextTable from '@opentiny/vue-theme/svgs/rich-text-table.svg' - -export default svg({ name: 'IconRichTextTable', component: RichTextTable }) diff --git a/packages/vue-icon/src/rich-text-task-list.ts b/packages/vue-icon/src/rich-text-task-list.ts new file mode 100644 index 0000000000..ca8a8dd26c --- /dev/null +++ b/packages/vue-icon/src/rich-text-task-list.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextTaskList from '@opentiny/vue-theme/svgs/rich-text-task-list.svg' + +export default () => + svg({ name: 'IconRichTextTaskList', component: RichTextTaskList, filledComponent: RichTextTaskList })() diff --git a/packages/vue-icon/src/rich-text-task-list/index.ts b/packages/vue-icon/src/rich-text-task-list/index.ts deleted file mode 100644 index d1e6ebd56c..0000000000 --- a/packages/vue-icon/src/rich-text-task-list/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextTaskList from '@opentiny/vue-theme/svgs/rich-text-task-list.svg' - -export default svg({ name: 'IconRichTextTaskList', component: RichTextTaskList }) diff --git a/packages/vue-icon/src/rich-text-underline.ts b/packages/vue-icon/src/rich-text-underline.ts new file mode 100644 index 0000000000..a9f34e02b8 --- /dev/null +++ b/packages/vue-icon/src/rich-text-underline.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import RichTextUnderline from '@opentiny/vue-theme/svgs/rich-text-underline.svg' + +export default () => + svg({ name: 'IconRichTextUnderline', component: RichTextUnderline, filledComponent: RichTextUnderline })() diff --git a/packages/vue-icon/src/rich-text-underline/index.ts b/packages/vue-icon/src/rich-text-underline/index.ts deleted file mode 100644 index 1cf40b2493..0000000000 --- a/packages/vue-icon/src/rich-text-underline/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextUnderline from '@opentiny/vue-theme/svgs/rich-text-underline.svg' - -export default svg({ name: 'IconRichTextUnderline', component: RichTextUnderline }) diff --git a/packages/vue-icon/src/rich-text-undo.ts b/packages/vue-icon/src/rich-text-undo.ts new file mode 100644 index 0000000000..192a4343ef --- /dev/null +++ b/packages/vue-icon/src/rich-text-undo.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import RichTextUndo from '@opentiny/vue-theme/svgs/rich-text-undo.svg' + +export default () => svg({ name: 'IconRichTextUndo', component: RichTextUndo, filledComponent: RichTextUndo })() diff --git a/packages/vue-icon/src/rich-text-undo/index.ts b/packages/vue-icon/src/rich-text-undo/index.ts deleted file mode 100644 index 7851e7b47e..0000000000 --- a/packages/vue-icon/src/rich-text-undo/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RichTextUndo from '@opentiny/vue-theme/svgs/rich-text-undo.svg' - -export default svg({ name: 'IconRichTextUndo', component: RichTextUndo }) diff --git a/packages/vue-icon/src/right-frozen.ts b/packages/vue-icon/src/right-frozen.ts new file mode 100644 index 0000000000..e53aad5b6a --- /dev/null +++ b/packages/vue-icon/src/right-frozen.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import RightFrozen from '@opentiny/vue-theme/svgs/right-frozen.svg' + +export default () => svg({ name: 'IconRightFrozen', component: RightFrozen, filledComponent: RightFrozen })() diff --git a/packages/vue-icon/src/right-frozen/index.ts b/packages/vue-icon/src/right-frozen/index.ts deleted file mode 100644 index 551eba5c1d..0000000000 --- a/packages/vue-icon/src/right-frozen/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RightFrozen from '@opentiny/vue-theme/svgs/right-frozen.svg' - -export default () => svg({ name: 'IconRightFrozen', component: RightFrozen })() diff --git a/packages/vue-icon/src/right-o.ts b/packages/vue-icon/src/right-o.ts new file mode 100644 index 0000000000..0236026488 --- /dev/null +++ b/packages/vue-icon/src/right-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import RightO from '@opentiny/vue-theme/svgs/right-o.svg' + +export default () => svg({ name: 'IconRightO', component: RightO, filledComponent: RightO })() diff --git a/packages/vue-icon/src/right-o/index.ts b/packages/vue-icon/src/right-o/index.ts deleted file mode 100644 index 095659a357..0000000000 --- a/packages/vue-icon/src/right-o/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RightO from '@opentiny/vue-theme/svgs/right-o.svg' - -export default () => svg({ name: 'IconRightO', component: RightO })() diff --git a/packages/vue-icon/src/right.ts b/packages/vue-icon/src/right.ts new file mode 100644 index 0000000000..0899256dbb --- /dev/null +++ b/packages/vue-icon/src/right.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Right from '@opentiny/vue-theme/svgs/right.svg' + +export default () => svg({ name: 'IconRight', component: Right, filledComponent: Right })() diff --git a/packages/vue-icon/src/right/index.ts b/packages/vue-icon/src/right/index.ts deleted file mode 100644 index bb3ae3deab..0000000000 --- a/packages/vue-icon/src/right/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Right from '@opentiny/vue-theme/svgs/right.svg' - -export default () => svg({ name: 'IconRight', component: Right })() diff --git a/packages/vue-icon/src/rightward.ts b/packages/vue-icon/src/rightward.ts new file mode 100644 index 0000000000..6d0c3f65f3 --- /dev/null +++ b/packages/vue-icon/src/rightward.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Rightward from '@opentiny/vue-theme/svgs/rightward.svg' + +export default () => svg({ name: 'IconRightward', component: Rightward, filledComponent: Rightward })() diff --git a/packages/vue-icon/src/rightward/index.ts b/packages/vue-icon/src/rightward/index.ts deleted file mode 100644 index 86b4e3ac9b..0000000000 --- a/packages/vue-icon/src/rightward/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Rightward from '@opentiny/vue-theme/svgs/rightward.svg' - -export default () => svg({ name: 'IconRightward', component: Rightward })() diff --git a/packages/vue-icon/src/row-reverse.ts b/packages/vue-icon/src/row-reverse.ts new file mode 100644 index 0000000000..e1189b23e6 --- /dev/null +++ b/packages/vue-icon/src/row-reverse.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import RowReverse from '@opentiny/vue-theme/svgs/row-reverse.svg' + +export default () => svg({ name: 'IconRowReverse', component: RowReverse, filledComponent: RowReverse })() diff --git a/packages/vue-icon/src/row-reverse/index.ts b/packages/vue-icon/src/row-reverse/index.ts deleted file mode 100644 index 6fa9e695c6..0000000000 --- a/packages/vue-icon/src/row-reverse/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import RowReverse from '@opentiny/vue-theme/svgs/row-reverse.svg' - -export default () => svg({ name: 'IconRowReverse', component: RowReverse })() diff --git a/packages/vue-icon/src/sandwich-collapse.ts b/packages/vue-icon/src/sandwich-collapse.ts new file mode 100644 index 0000000000..2b17754aa8 --- /dev/null +++ b/packages/vue-icon/src/sandwich-collapse.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import SandwichCollapse from '@opentiny/vue-theme/svgs/sandwich-collapse.svg' + +export default () => + svg({ name: 'IconSandwichCollapse', component: SandwichCollapse, filledComponent: SandwichCollapse })() diff --git a/packages/vue-icon/src/sandwich-collapse/index.ts b/packages/vue-icon/src/sandwich-collapse/index.ts deleted file mode 100644 index e2b14de490..0000000000 --- a/packages/vue-icon/src/sandwich-collapse/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import SandwichCollapse from '@opentiny/vue-theme/svgs/sandwich-collapse.svg' - -export default () => svg({ name: 'IconSandwichCollapse', component: SandwichCollapse })() diff --git a/packages/vue-icon/src/sandwich-expand.ts b/packages/vue-icon/src/sandwich-expand.ts new file mode 100644 index 0000000000..47afb1c8a5 --- /dev/null +++ b/packages/vue-icon/src/sandwich-expand.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import SandwichExpand from '@opentiny/vue-theme/svgs/sandwich-expand.svg' + +export default () => svg({ name: 'IconSandwichExpand', component: SandwichExpand, filledComponent: SandwichExpand })() diff --git a/packages/vue-icon/src/sandwich-expand/index.ts b/packages/vue-icon/src/sandwich-expand/index.ts deleted file mode 100644 index a34c812b8a..0000000000 --- a/packages/vue-icon/src/sandwich-expand/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import SandwichExpand from '@opentiny/vue-theme/svgs/sandwich-expand.svg' - -export default () => svg({ name: 'IconSandwichExpand', component: SandwichExpand })() diff --git a/packages/vue-icon/src/save.ts b/packages/vue-icon/src/save.ts new file mode 100644 index 0000000000..708a143ae5 --- /dev/null +++ b/packages/vue-icon/src/save.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Save from '@opentiny/vue-theme/svgs/save.svg' + +export default () => svg({ name: 'IconSave', component: Save, filledComponent: Save })() diff --git a/packages/vue-icon/src/save/index.ts b/packages/vue-icon/src/save/index.ts deleted file mode 100644 index 41a3cc6aaa..0000000000 --- a/packages/vue-icon/src/save/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Save from '@opentiny/vue-theme/svgs/save.svg' - -export default () => svg({ name: 'IconSave', component: Save })() diff --git a/packages/vue-icon/src/scan.ts b/packages/vue-icon/src/scan.ts new file mode 100644 index 0000000000..66ca558539 --- /dev/null +++ b/packages/vue-icon/src/scan.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Scan from '@opentiny/vue-theme/svgs/scan.svg' + +export default () => svg({ name: 'IconScan', component: Scan, filledComponent: Scan })() diff --git a/packages/vue-icon/src/scan/index.ts b/packages/vue-icon/src/scan/index.ts deleted file mode 100644 index 5bc96c1dec..0000000000 --- a/packages/vue-icon/src/scan/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Scan from '@opentiny/vue-theme/svgs/scan.svg' - -export default () => svg({ name: 'IconScan', component: Scan })() diff --git a/packages/vue-icon/src/scissor.ts b/packages/vue-icon/src/scissor.ts new file mode 100644 index 0000000000..ec8bc3f092 --- /dev/null +++ b/packages/vue-icon/src/scissor.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Scissor from '@opentiny/vue-theme/svgs/scissor.svg' + +export default () => svg({ name: 'IconScissor', component: Scissor, filledComponent: Scissor })() diff --git a/packages/vue-icon/src/scissor/index.ts b/packages/vue-icon/src/scissor/index.ts deleted file mode 100644 index 0fd31ac468..0000000000 --- a/packages/vue-icon/src/scissor/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Scissor from '@opentiny/vue-theme/svgs/scissor.svg' - -export default () => svg({ name: 'IconScissor', component: Scissor })() diff --git a/packages/vue-icon/src/search-resource.ts b/packages/vue-icon/src/search-resource.ts new file mode 100644 index 0000000000..509b99c250 --- /dev/null +++ b/packages/vue-icon/src/search-resource.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import SearchResource from '@opentiny/vue-theme/svgs/search-resource.svg' + +export default () => svg({ name: 'IconSearchResource', component: SearchResource, filledComponent: SearchResource })() diff --git a/packages/vue-icon/src/search-resource/index.ts b/packages/vue-icon/src/search-resource/index.ts deleted file mode 100644 index 62ba085251..0000000000 --- a/packages/vue-icon/src/search-resource/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import SearchResource from '@opentiny/vue-theme/svgs/search-resource.svg' - -export default () => svg({ name: 'IconSearchResource', component: SearchResource })() diff --git a/packages/vue-icon/src/search.ts b/packages/vue-icon/src/search.ts new file mode 100644 index 0000000000..919c03af4e --- /dev/null +++ b/packages/vue-icon/src/search.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Search from '@opentiny/vue-theme/svgs/search.svg' + +export default () => svg({ name: 'IconSearch', component: Search, filledComponent: Search })() diff --git a/packages/vue-icon/src/search/index.ts b/packages/vue-icon/src/search/index.ts deleted file mode 100644 index c7531501c3..0000000000 --- a/packages/vue-icon/src/search/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Search from '@opentiny/vue-theme/svgs/search.svg' - -export default () => svg({ name: 'IconSearch', component: Search })() diff --git a/packages/vue-icon/src/select.ts b/packages/vue-icon/src/select.ts new file mode 100644 index 0000000000..26b5b9da86 --- /dev/null +++ b/packages/vue-icon/src/select.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Select from '@opentiny/vue-theme/svgs/select.svg' + +export default () => svg({ name: 'IconSelect', component: Select, filledComponent: Select })() diff --git a/packages/vue-icon/src/select/index.ts b/packages/vue-icon/src/select/index.ts deleted file mode 100644 index 70232ed0e4..0000000000 --- a/packages/vue-icon/src/select/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Select from '@opentiny/vue-theme/svgs/select.svg' - -export default () => svg({ name: 'IconSelect', component: Select })() diff --git a/packages/vue-icon/src/sent.ts b/packages/vue-icon/src/sent.ts new file mode 100644 index 0000000000..8f175abebb --- /dev/null +++ b/packages/vue-icon/src/sent.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Sent from '@opentiny/vue-theme/svgs/sent.svg' + +export default () => svg({ name: 'IconSent', component: Sent, filledComponent: Sent })() diff --git a/packages/vue-icon/src/sent/index.ts b/packages/vue-icon/src/sent/index.ts deleted file mode 100644 index 87ad4a2589..0000000000 --- a/packages/vue-icon/src/sent/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Sent from '@opentiny/vue-theme/svgs/sent.svg' - -export default () => svg({ name: 'IconSent', component: Sent })() diff --git a/packages/vue-icon/src/separate.ts b/packages/vue-icon/src/separate.ts new file mode 100644 index 0000000000..f61460d13d --- /dev/null +++ b/packages/vue-icon/src/separate.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Separate from '@opentiny/vue-theme/svgs/separate.svg' + +export default () => svg({ name: 'IconSeparate', component: Separate, filledComponent: Separate })() diff --git a/packages/vue-icon/src/separate/index.ts b/packages/vue-icon/src/separate/index.ts deleted file mode 100644 index b1a42ebf27..0000000000 --- a/packages/vue-icon/src/separate/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Separate from '@opentiny/vue-theme/svgs/separate.svg' - -export default () => svg({ name: 'IconSeparate', component: Separate })() diff --git a/packages/vue-icon/src/setting-data.ts b/packages/vue-icon/src/setting-data.ts new file mode 100644 index 0000000000..effd91bd53 --- /dev/null +++ b/packages/vue-icon/src/setting-data.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import SettingData from '@opentiny/vue-theme/svgs/setting-data.svg' + +export default () => svg({ name: 'IconSettingData', component: SettingData, filledComponent: SettingData })() diff --git a/packages/vue-icon/src/setting-data/index.ts b/packages/vue-icon/src/setting-data/index.ts deleted file mode 100644 index 1432845ed2..0000000000 --- a/packages/vue-icon/src/setting-data/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import SettingData from '@opentiny/vue-theme/svgs/setting-data.svg' - -export default () => svg({ name: 'IconSettingData', component: SettingData })() diff --git a/packages/vue-icon/src/setting.ts b/packages/vue-icon/src/setting.ts new file mode 100644 index 0000000000..3ce6961bae --- /dev/null +++ b/packages/vue-icon/src/setting.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Setting from '@opentiny/vue-theme/svgs/setting.svg' + +export default () => svg({ name: 'IconSetting', component: Setting, filledComponent: Setting })() diff --git a/packages/vue-icon/src/setting/index.ts b/packages/vue-icon/src/setting/index.ts deleted file mode 100644 index 60e7d4d4c9..0000000000 --- a/packages/vue-icon/src/setting/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Setting from '@opentiny/vue-theme/svgs/setting.svg' - -export default () => svg({ name: 'IconSetting', component: Setting })() diff --git a/packages/vue-icon/src/share-arrow.ts b/packages/vue-icon/src/share-arrow.ts new file mode 100644 index 0000000000..fa43f64a14 --- /dev/null +++ b/packages/vue-icon/src/share-arrow.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ShareArrow from '@opentiny/vue-theme/svgs/share-arrow.svg' + +export default () => svg({ name: 'IconShareArrow', component: ShareArrow, filledComponent: ShareArrow })() diff --git a/packages/vue-icon/src/share-arrow/index.ts b/packages/vue-icon/src/share-arrow/index.ts deleted file mode 100644 index bf2f73b651..0000000000 --- a/packages/vue-icon/src/share-arrow/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ShareArrow from '@opentiny/vue-theme/svgs/share-arrow.svg' - -export default () => svg({ name: 'IconShareArrow', component: ShareArrow })() diff --git a/packages/vue-icon/src/share.ts b/packages/vue-icon/src/share.ts new file mode 100644 index 0000000000..0fb1e8ad72 --- /dev/null +++ b/packages/vue-icon/src/share.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Share from '@opentiny/vue-theme/svgs/share.svg' + +export default () => svg({ name: 'IconShare', component: Share, filledComponent: Share })() diff --git a/packages/vue-icon/src/share/index.ts b/packages/vue-icon/src/share/index.ts deleted file mode 100644 index 27670acc47..0000000000 --- a/packages/vue-icon/src/share/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Share from '@opentiny/vue-theme/svgs/share.svg' - -export default () => svg({ name: 'IconShare', component: Share })() diff --git a/packages/vue-icon/src/shipped.ts b/packages/vue-icon/src/shipped.ts new file mode 100644 index 0000000000..d8dfce7673 --- /dev/null +++ b/packages/vue-icon/src/shipped.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Shipped from '@opentiny/vue-theme/svgs/shipped.svg' + +export default () => svg({ name: 'IconShipped', component: Shipped, filledComponent: Shipped })() diff --git a/packages/vue-icon/src/shipped/index.ts b/packages/vue-icon/src/shipped/index.ts deleted file mode 100644 index dffa35a90a..0000000000 --- a/packages/vue-icon/src/shipped/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Shipped from '@opentiny/vue-theme/svgs/shipped.svg' - -export default () => svg({ name: 'IconShipped', component: Shipped })() diff --git a/packages/vue-icon/src/shopping-card.ts b/packages/vue-icon/src/shopping-card.ts new file mode 100644 index 0000000000..588f120bb2 --- /dev/null +++ b/packages/vue-icon/src/shopping-card.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ShoppingCard from '@opentiny/vue-theme/svgs/shopping-card.svg' + +export default () => svg({ name: 'IconShoppingCard', component: ShoppingCard, filledComponent: ShoppingCard })() diff --git a/packages/vue-icon/src/shopping-card/index.ts b/packages/vue-icon/src/shopping-card/index.ts deleted file mode 100644 index f5d31a9af4..0000000000 --- a/packages/vue-icon/src/shopping-card/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ShoppingCard from '@opentiny/vue-theme/svgs/shopping-card.svg' - -export default () => svg({ name: 'IconShoppingCard', component: ShoppingCard })() diff --git a/packages/vue-icon/src/shutdown.ts b/packages/vue-icon/src/shutdown.ts new file mode 100644 index 0000000000..4e7efd39e3 --- /dev/null +++ b/packages/vue-icon/src/shutdown.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Shutdown from '@opentiny/vue-theme/svgs/shutdown.svg' + +export default () => svg({ name: 'IconShutdown', component: Shutdown, filledComponent: Shutdown })() diff --git a/packages/vue-icon/src/shutdown/index.ts b/packages/vue-icon/src/shutdown/index.ts deleted file mode 100644 index d4def2177e..0000000000 --- a/packages/vue-icon/src/shutdown/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Shutdown from '@opentiny/vue-theme/svgs/shutdown.svg' - -export default () => svg({ name: 'IconShutdown', component: Shutdown })() diff --git a/packages/vue-icon/src/smile-o.ts b/packages/vue-icon/src/smile-o.ts new file mode 100644 index 0000000000..a432f68605 --- /dev/null +++ b/packages/vue-icon/src/smile-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import SmileO from '@opentiny/vue-theme/svgs/smile-o.svg' + +export default () => svg({ name: 'IconSmileO', component: SmileO, filledComponent: SmileO })() diff --git a/packages/vue-icon/src/smile-o/index.ts b/packages/vue-icon/src/smile-o/index.ts deleted file mode 100644 index 2dfa1f5d08..0000000000 --- a/packages/vue-icon/src/smile-o/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import SmileO from '@opentiny/vue-theme/svgs/smile-o.svg' - -export default () => svg({ name: 'IconSmileO', component: SmileO })() diff --git a/packages/vue-icon/src/smile.ts b/packages/vue-icon/src/smile.ts new file mode 100644 index 0000000000..c2b981d65d --- /dev/null +++ b/packages/vue-icon/src/smile.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Smile from '@opentiny/vue-theme/svgs/smile.svg' + +export default () => svg({ name: 'IconSmile', component: Smile, filledComponent: Smile })() diff --git a/packages/vue-icon/src/smile/index.ts b/packages/vue-icon/src/smile/index.ts deleted file mode 100644 index 6631b95f68..0000000000 --- a/packages/vue-icon/src/smile/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Smile from '@opentiny/vue-theme/svgs/smile.svg' - -export default () => svg({ name: 'IconSmile', component: Smile })() diff --git a/packages/vue-icon/src/sold-out.ts b/packages/vue-icon/src/sold-out.ts new file mode 100644 index 0000000000..2a06bde61a --- /dev/null +++ b/packages/vue-icon/src/sold-out.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import SoldOut from '@opentiny/vue-theme/svgs/sold-out.svg' + +export default () => svg({ name: 'IconSoldOut', component: SoldOut, filledComponent: SoldOut })() diff --git a/packages/vue-icon/src/sold-out/index.ts b/packages/vue-icon/src/sold-out/index.ts deleted file mode 100644 index ed461657eb..0000000000 --- a/packages/vue-icon/src/sold-out/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import SoldOut from '@opentiny/vue-theme/svgs/sold-out.svg' - -export default () => svg({ name: 'IconSoldOut', component: SoldOut })() diff --git a/packages/vue-icon/src/sort-default.ts b/packages/vue-icon/src/sort-default.ts new file mode 100644 index 0000000000..5284b3ebb6 --- /dev/null +++ b/packages/vue-icon/src/sort-default.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import SortDefault from '@opentiny/vue-theme/svgs/sort-default.svg' + +export default () => svg({ name: 'IconSortDefault', component: SortDefault, filledComponent: SortDefault })() diff --git a/packages/vue-icon/src/sort-default/index.ts b/packages/vue-icon/src/sort-default/index.ts deleted file mode 100644 index efb0c91f34..0000000000 --- a/packages/vue-icon/src/sort-default/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import SortDefault from '@opentiny/vue-theme/svgs/sort-default.svg' - -export default () => svg({ name: 'IconSortDefault', component: SortDefault })() diff --git a/packages/vue-icon/src/sort-o.ts b/packages/vue-icon/src/sort-o.ts new file mode 100644 index 0000000000..2f3abcf725 --- /dev/null +++ b/packages/vue-icon/src/sort-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import SortO from '@opentiny/vue-theme/svgs/sort-o.svg' + +export default () => svg({ name: 'IconSortO', component: SortO, filledComponent: SortO })() diff --git a/packages/vue-icon/src/sort-o/index.ts b/packages/vue-icon/src/sort-o/index.ts deleted file mode 100644 index 873ca22e7f..0000000000 --- a/packages/vue-icon/src/sort-o/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import SortO from '@opentiny/vue-theme/svgs/sort-o.svg' - -export default () => svg({ name: 'IconSortO', component: SortO })() diff --git a/packages/vue-icon/src/sort-triangle-ascending.ts b/packages/vue-icon/src/sort-triangle-ascending.ts new file mode 100644 index 0000000000..ab401fd37b --- /dev/null +++ b/packages/vue-icon/src/sort-triangle-ascending.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import SortTriangleAscending from '@opentiny/vue-theme/svgs/sort-triangle-ascending.svg' + +export default () => + svg({ name: 'IconSortTriangleAscending', component: SortTriangleAscending, filledComponent: SortTriangleAscending })() diff --git a/packages/vue-icon/src/sort-triangle-ascending/index.ts b/packages/vue-icon/src/sort-triangle-ascending/index.ts deleted file mode 100644 index 148d10aa9c..0000000000 --- a/packages/vue-icon/src/sort-triangle-ascending/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import SortTriangleAscending from '@opentiny/vue-theme/svgs/sort-triangle-ascending.svg' - -export default () => svg({ name: 'IconSortTriangleAscending', component: SortTriangleAscending })() diff --git a/packages/vue-icon/src/sort-triangle-descending.ts b/packages/vue-icon/src/sort-triangle-descending.ts new file mode 100644 index 0000000000..0fa3dc5e40 --- /dev/null +++ b/packages/vue-icon/src/sort-triangle-descending.ts @@ -0,0 +1,9 @@ +import { svg } from '@opentiny/vue-common' +import SortTriangleDescending from '@opentiny/vue-theme/svgs/sort-triangle-descending.svg' + +export default () => + svg({ + name: 'IconSortTriangleDescending', + component: SortTriangleDescending, + filledComponent: SortTriangleDescending + })() diff --git a/packages/vue-icon/src/sort-triangle-descending/index.ts b/packages/vue-icon/src/sort-triangle-descending/index.ts deleted file mode 100644 index 17e863bfdd..0000000000 --- a/packages/vue-icon/src/sort-triangle-descending/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import SortTriangleDescending from '@opentiny/vue-theme/svgs/sort-triangle-descending.svg' - -export default () => svg({ name: 'IconSortTriangleDescending', component: SortTriangleDescending })() diff --git a/packages/vue-icon/src/sort-triangle.ts b/packages/vue-icon/src/sort-triangle.ts new file mode 100644 index 0000000000..b357205e28 --- /dev/null +++ b/packages/vue-icon/src/sort-triangle.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import SortTriangle from '@opentiny/vue-theme/svgs/sort-triangle.svg' + +export default () => svg({ name: 'IconSortTriangle', component: SortTriangle, filledComponent: SortTriangle })() diff --git a/packages/vue-icon/src/sort-triangle/index.ts b/packages/vue-icon/src/sort-triangle/index.ts deleted file mode 100644 index add9ab2a30..0000000000 --- a/packages/vue-icon/src/sort-triangle/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import SortTriangle from '@opentiny/vue-theme/svgs/sort-triangle.svg' - -export default () => svg({ name: 'IconSortTriangle', component: SortTriangle })() diff --git a/packages/vue-icon/src/sort.ts b/packages/vue-icon/src/sort.ts new file mode 100644 index 0000000000..8f98fe53aa --- /dev/null +++ b/packages/vue-icon/src/sort.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Sort from '@opentiny/vue-theme/svgs/sort.svg' + +export default () => svg({ name: 'IconSort', component: Sort, filledComponent: Sort })() diff --git a/packages/vue-icon/src/sort/index.ts b/packages/vue-icon/src/sort/index.ts deleted file mode 100644 index 984ebcc941..0000000000 --- a/packages/vue-icon/src/sort/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Sort from '@opentiny/vue-theme/svgs/sort.svg' - -export default () => svg({ name: 'IconSort', component: Sort })() diff --git a/packages/vue-icon/src/split-left.ts b/packages/vue-icon/src/split-left.ts new file mode 100644 index 0000000000..116421c5ef --- /dev/null +++ b/packages/vue-icon/src/split-left.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import SplitLeft from '@opentiny/vue-theme/svgs/split-left.svg' + +export default () => svg({ name: 'IconSplitLeft', component: SplitLeft, filledComponent: SplitLeft })() diff --git a/packages/vue-icon/src/split-left/index.ts b/packages/vue-icon/src/split-left/index.ts deleted file mode 100644 index feb38b4e18..0000000000 --- a/packages/vue-icon/src/split-left/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import SplitLeft from '@opentiny/vue-theme/svgs/split-left.svg' - -export default () => svg({ name: 'IconSplitLeft', component: SplitLeft })() diff --git a/packages/vue-icon/src/split-right.ts b/packages/vue-icon/src/split-right.ts new file mode 100644 index 0000000000..f3bf22af3c --- /dev/null +++ b/packages/vue-icon/src/split-right.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import SplitRight from '@opentiny/vue-theme/svgs/split-right.svg' + +export default () => svg({ name: 'IconSplitRight', component: SplitRight, filledComponent: SplitRight })() diff --git a/packages/vue-icon/src/split-right/index.ts b/packages/vue-icon/src/split-right/index.ts deleted file mode 100644 index 0f6086b7b2..0000000000 --- a/packages/vue-icon/src/split-right/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import SplitRight from '@opentiny/vue-theme/svgs/split-right.svg' - -export default () => svg({ name: 'IconSplitRight', component: SplitRight })() diff --git a/packages/vue-icon/src/split.ts b/packages/vue-icon/src/split.ts new file mode 100644 index 0000000000..7a02fb5781 --- /dev/null +++ b/packages/vue-icon/src/split.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Split from '@opentiny/vue-theme/svgs/split.svg' + +export default () => svg({ name: 'IconSplit', component: Split, filledComponent: Split })() diff --git a/packages/vue-icon/src/split/index.ts b/packages/vue-icon/src/split/index.ts deleted file mode 100644 index 2d1b351b0b..0000000000 --- a/packages/vue-icon/src/split/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import Split from '@opentiny/vue-theme/svgs/split.svg' - -export default () => svg({ name: 'IconSplit', component: Split })() diff --git a/packages/vue-icon/src/star-active.ts b/packages/vue-icon/src/star-active.ts new file mode 100644 index 0000000000..baa008bee0 --- /dev/null +++ b/packages/vue-icon/src/star-active.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import StarActive from '@opentiny/vue-theme/svgs/star-active.svg' + +export default () => svg({ name: 'IconStarActive', component: StarActive, filledComponent: StarActive })() diff --git a/packages/vue-icon/src/star-active/index.ts b/packages/vue-icon/src/star-active/index.ts deleted file mode 100644 index d111eab482..0000000000 --- a/packages/vue-icon/src/star-active/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import StarActive from '@opentiny/vue-theme/svgs/star-active.svg' - -export default () => svg({ name: 'IconStarActive', component: StarActive })() diff --git a/packages/vue-icon/src/star-disable.ts b/packages/vue-icon/src/star-disable.ts new file mode 100644 index 0000000000..f843a96bcb --- /dev/null +++ b/packages/vue-icon/src/star-disable.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import StarDisable from '@opentiny/vue-theme/svgs/star-disable.svg' + +export default () => svg({ name: 'IconStarDisable', component: StarDisable, filledComponent: StarDisable })() diff --git a/packages/vue-icon/src/star-disable/index.ts b/packages/vue-icon/src/star-disable/index.ts deleted file mode 100644 index 3139d399c5..0000000000 --- a/packages/vue-icon/src/star-disable/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import StarDisable from '@opentiny/vue-theme/svgs/star-disable.svg' - -export default () => svg({ name: 'IconStarDisable', component: StarDisable })() diff --git a/packages/vue-icon/src/star-o.ts b/packages/vue-icon/src/star-o.ts new file mode 100644 index 0000000000..e737fbb7ca --- /dev/null +++ b/packages/vue-icon/src/star-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import StarO from '@opentiny/vue-theme/svgs/star-o.svg' + +export default () => svg({ name: 'IconStarO', component: StarO, filledComponent: StarO })() diff --git a/packages/vue-icon/src/star-o/index.ts b/packages/vue-icon/src/star-o/index.ts deleted file mode 100644 index 2b6b2e1251..0000000000 --- a/packages/vue-icon/src/star-o/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import StarO from '@opentiny/vue-theme/svgs/star-o.svg' - -export default () => svg({ name: 'IconStarO', component: StarO })() diff --git a/packages/vue-icon/src/start-circle.ts b/packages/vue-icon/src/start-circle.ts new file mode 100644 index 0000000000..86c031051a --- /dev/null +++ b/packages/vue-icon/src/start-circle.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import StartCircle from '@opentiny/vue-theme/svgs/start-circle.svg' + +export default () => svg({ name: 'IconStartCircle', component: StartCircle, filledComponent: StartCircle })() diff --git a/packages/vue-icon/src/start-circle/index.ts b/packages/vue-icon/src/start-circle/index.ts deleted file mode 100644 index b0b7f79b89..0000000000 --- a/packages/vue-icon/src/start-circle/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import StartCircle from '@opentiny/vue-theme/svgs/start-circle.svg' - -export default () => svg({ name: 'IconStartCircle', component: StartCircle })() diff --git a/packages/vue-icon/src/start-o.ts b/packages/vue-icon/src/start-o.ts new file mode 100644 index 0000000000..141c0acb16 --- /dev/null +++ b/packages/vue-icon/src/start-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import StartO from '@opentiny/vue-theme/svgs/start-o.svg' + +export default () => svg({ name: 'IconStartO', component: StartO, filledComponent: StartO })() diff --git a/packages/vue-icon/src/start-o/index.ts b/packages/vue-icon/src/start-o/index.ts deleted file mode 100644 index efca0d285c..0000000000 --- a/packages/vue-icon/src/start-o/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import StartO from '@opentiny/vue-theme/svgs/start-o.svg' - -export default () => svg({ name: 'IconStartO', component: StartO })() diff --git a/packages/vue-icon/src/start.ts b/packages/vue-icon/src/start.ts new file mode 100644 index 0000000000..6b5d0597a4 --- /dev/null +++ b/packages/vue-icon/src/start.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Start from '@opentiny/vue-theme/svgs/start.svg' + +export default () => svg({ name: 'IconStart', component: Start, filledComponent: Start })() diff --git a/packages/vue-icon/src/start/index.ts b/packages/vue-icon/src/start/index.ts deleted file mode 100644 index c70536d43c..0000000000 --- a/packages/vue-icon/src/start/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Start from '@opentiny/vue-theme/svgs/start.svg' - -export default () => svg({ name: 'IconStart', component: Start })() diff --git a/packages/vue-icon/src/statistics.ts b/packages/vue-icon/src/statistics.ts new file mode 100644 index 0000000000..edb3e77671 --- /dev/null +++ b/packages/vue-icon/src/statistics.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Statistics from '@opentiny/vue-theme/svgs/statistics.svg' + +export default () => svg({ name: 'IconStatistics', component: Statistics, filledComponent: Statistics })() diff --git a/packages/vue-icon/src/statistics/index.ts b/packages/vue-icon/src/statistics/index.ts deleted file mode 100644 index 6eb938b47c..0000000000 --- a/packages/vue-icon/src/statistics/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Statistics from '@opentiny/vue-theme/svgs/statistics.svg' - -export default () => svg({ name: 'IconStatistics', component: Statistics })() diff --git a/packages/vue-icon/src/steps-error.ts b/packages/vue-icon/src/steps-error.ts new file mode 100644 index 0000000000..a79d58da1c --- /dev/null +++ b/packages/vue-icon/src/steps-error.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import StepsError from '@opentiny/vue-theme/svgs/steps-error.svg' + +export default () => svg({ name: 'IconStepsError', component: StepsError, filledComponent: StepsError })() diff --git a/packages/vue-icon/src/steps-error/index.ts b/packages/vue-icon/src/steps-error/index.ts deleted file mode 100644 index 958457ac8a..0000000000 --- a/packages/vue-icon/src/steps-error/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import StepsError from '@opentiny/vue-theme/svgs/steps-error.svg' - -export default () => svg({ name: 'IconStepsError', component: StepsError })() diff --git a/packages/vue-icon/src/stop.ts b/packages/vue-icon/src/stop.ts new file mode 100644 index 0000000000..0638d2d370 --- /dev/null +++ b/packages/vue-icon/src/stop.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Stop from '@opentiny/vue-theme/svgs/stop.svg' + +export default () => svg({ name: 'IconStop', component: Stop, filledComponent: Stop })() diff --git a/packages/vue-icon/src/stop/index.ts b/packages/vue-icon/src/stop/index.ts deleted file mode 100644 index 0f9bca6dcb..0000000000 --- a/packages/vue-icon/src/stop/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Stop from '@opentiny/vue-theme/svgs/stop.svg' - -export default () => svg({ name: 'IconStop', component: Stop })() diff --git a/packages/vue-icon/src/stream-solid.ts b/packages/vue-icon/src/stream-solid.ts new file mode 100644 index 0000000000..46dd0bcbad --- /dev/null +++ b/packages/vue-icon/src/stream-solid.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import StreamSolid from '@opentiny/vue-theme/svgs/stream-solid.svg' + +export default () => svg({ name: 'IconStreamSolid', component: StreamSolid, filledComponent: StreamSolid })() diff --git a/packages/vue-icon/src/stream-solid/index.ts b/packages/vue-icon/src/stream-solid/index.ts deleted file mode 100644 index 30acc2464b..0000000000 --- a/packages/vue-icon/src/stream-solid/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import StreamSolid from '@opentiny/vue-theme/svgs/stream-solid.svg' - -export default () => svg({ name: 'IconStreamSolid', component: StreamSolid })() diff --git a/packages/vue-icon/src/stretch-crosswise.ts b/packages/vue-icon/src/stretch-crosswise.ts new file mode 100644 index 0000000000..4bf45bbcd9 --- /dev/null +++ b/packages/vue-icon/src/stretch-crosswise.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import StretchCrosswise from '@opentiny/vue-theme/svgs/stretch-crosswise.svg' + +export default () => + svg({ name: 'IconStretchCrosswise', component: StretchCrosswise, filledComponent: StretchCrosswise })() diff --git a/packages/vue-icon/src/stretch-crosswise/index.ts b/packages/vue-icon/src/stretch-crosswise/index.ts deleted file mode 100644 index 1c02e31bde..0000000000 --- a/packages/vue-icon/src/stretch-crosswise/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import StretchCrosswise from '@opentiny/vue-theme/svgs/stretch-crosswise.svg' - -export default () => svg({ name: 'IconStretchCrosswise', component: StretchCrosswise })() diff --git a/packages/vue-icon/src/stretch-upright.ts b/packages/vue-icon/src/stretch-upright.ts new file mode 100644 index 0000000000..c760905a8f --- /dev/null +++ b/packages/vue-icon/src/stretch-upright.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import StretchUpright from '@opentiny/vue-theme/svgs/stretch-upright.svg' + +export default () => svg({ name: 'IconStretchUpright', component: StretchUpright, filledComponent: StretchUpright })() diff --git a/packages/vue-icon/src/stretch-upright/index.ts b/packages/vue-icon/src/stretch-upright/index.ts deleted file mode 100644 index e696f0a6d4..0000000000 --- a/packages/vue-icon/src/stretch-upright/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import StretchUpright from '@opentiny/vue-theme/svgs/stretch-upright.svg' - -export default () => svg({ name: 'IconStretchUpright', component: StretchUpright })() diff --git a/packages/vue-icon/src/stretch.ts b/packages/vue-icon/src/stretch.ts new file mode 100644 index 0000000000..9246e6e130 --- /dev/null +++ b/packages/vue-icon/src/stretch.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Stretch from '@opentiny/vue-theme/svgs/stretch.svg' + +export default () => svg({ name: 'IconStretch', component: Stretch, filledComponent: Stretch })() diff --git a/packages/vue-icon/src/stretch/index.ts b/packages/vue-icon/src/stretch/index.ts deleted file mode 100644 index 44f50eb583..0000000000 --- a/packages/vue-icon/src/stretch/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Stretch from '@opentiny/vue-theme/svgs/stretch.svg' - -export default () => svg({ name: 'IconStretch', component: Stretch })() diff --git a/packages/vue-icon/src/sub-script/index.ts b/packages/vue-icon/src/sub-script/index.ts deleted file mode 100644 index 6a3bf64133..0000000000 --- a/packages/vue-icon/src/sub-script/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import SubScript from '@opentiny/vue-theme/svgs/subscript.svg' - -export default svg({ name: 'IconSubScript', component: SubScript }) diff --git a/packages/vue-icon/src/subscript.ts b/packages/vue-icon/src/subscript.ts new file mode 100644 index 0000000000..4206113606 --- /dev/null +++ b/packages/vue-icon/src/subscript.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Subscript from '@opentiny/vue-theme/svgs/subscript.svg' + +export default () => svg({ name: 'IconSubscript', component: Subscript, filledComponent: Subscript })() diff --git a/packages/vue-icon/src/subscript/index.ts b/packages/vue-icon/src/subscript/index.ts deleted file mode 100644 index ecf8f01a9c..0000000000 --- a/packages/vue-icon/src/subscript/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import SubScript from '@opentiny/vue-theme/svgs/subscript.svg' - -export default () => svg({ name: 'IconSubScript', component: SubScript })() diff --git a/packages/vue-icon/src/substitute-material.ts b/packages/vue-icon/src/substitute-material.ts new file mode 100644 index 0000000000..72fd09fbe9 --- /dev/null +++ b/packages/vue-icon/src/substitute-material.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import SubstituteMaterial from '@opentiny/vue-theme/svgs/substitute-material.svg' + +export default () => + svg({ name: 'IconSubstituteMaterial', component: SubstituteMaterial, filledComponent: SubstituteMaterial })() diff --git a/packages/vue-icon/src/substitute-material/index.ts b/packages/vue-icon/src/substitute-material/index.ts deleted file mode 100644 index 3fe0bac03b..0000000000 --- a/packages/vue-icon/src/substitute-material/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import SubstituteMaterial from '@opentiny/vue-theme/svgs/substitute-material.svg' - -export default () => svg({ name: 'IconSubstituteMaterial', component: SubstituteMaterial })() diff --git a/packages/vue-icon/src/success.ts b/packages/vue-icon/src/success.ts new file mode 100644 index 0000000000..e080d37772 --- /dev/null +++ b/packages/vue-icon/src/success.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Success from '@opentiny/vue-theme/svgs/success.svg' + +export default () => svg({ name: 'IconSuccess', component: Success, filledComponent: Success })() diff --git a/packages/vue-icon/src/success/index.ts b/packages/vue-icon/src/success/index.ts deleted file mode 100644 index d58cb61076..0000000000 --- a/packages/vue-icon/src/success/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Success from '@opentiny/vue-theme/svgs/success.svg' - -export default () => svg({ name: 'IconSuccess', component: Success })() diff --git a/packages/vue-icon/src/successful.ts b/packages/vue-icon/src/successful.ts new file mode 100644 index 0000000000..9ea4511c6a --- /dev/null +++ b/packages/vue-icon/src/successful.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Successful from '@opentiny/vue-theme/svgs/successful.svg' + +export default () => svg({ name: 'IconSuccessful', component: Successful, filledComponent: Successful })() diff --git a/packages/vue-icon/src/successful/index.ts b/packages/vue-icon/src/successful/index.ts deleted file mode 100644 index 9a8309e8fe..0000000000 --- a/packages/vue-icon/src/successful/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Successful from '@opentiny/vue-theme/svgs/successful.svg' - -export default () => svg({ name: 'IconSuccessful', component: Successful })() diff --git a/packages/vue-icon/src/surcharge-settled.ts b/packages/vue-icon/src/surcharge-settled.ts new file mode 100644 index 0000000000..e5c1aa2e20 --- /dev/null +++ b/packages/vue-icon/src/surcharge-settled.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import SurchargeSettled from '@opentiny/vue-theme/svgs/surcharge-settled.svg' + +export default () => + svg({ name: 'IconSurchargeSettled', component: SurchargeSettled, filledComponent: SurchargeSettled })() diff --git a/packages/vue-icon/src/surcharge-settled/index.ts b/packages/vue-icon/src/surcharge-settled/index.ts deleted file mode 100644 index bc8b081938..0000000000 --- a/packages/vue-icon/src/surcharge-settled/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import SurchargeSettled from '@opentiny/vue-theme/svgs/surcharge-settled.svg' - -export default () => svg({ name: 'IconSurchargeSettled', component: SurchargeSettled })() diff --git a/packages/vue-icon/src/surcharge-to-be-settled.ts b/packages/vue-icon/src/surcharge-to-be-settled.ts new file mode 100644 index 0000000000..6016116d87 --- /dev/null +++ b/packages/vue-icon/src/surcharge-to-be-settled.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import SurchargeToBeSettled from '@opentiny/vue-theme/svgs/surcharge-to-be-settled.svg' + +export default () => + svg({ name: 'IconSurchargeToBeSettled', component: SurchargeToBeSettled, filledComponent: SurchargeToBeSettled })() diff --git a/packages/vue-icon/src/surcharge-to-be-settled/index.ts b/packages/vue-icon/src/surcharge-to-be-settled/index.ts deleted file mode 100644 index 49a5958880..0000000000 --- a/packages/vue-icon/src/surcharge-to-be-settled/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import SurchargeToBeSettled from '@opentiny/vue-theme/svgs/surcharge-to-be-settled.svg' - -export default () => svg({ name: 'IconSurchargeToBeSettled', component: SurchargeToBeSettled })() diff --git a/packages/vue-icon/src/synchronize.ts b/packages/vue-icon/src/synchronize.ts new file mode 100644 index 0000000000..cb150dc21b --- /dev/null +++ b/packages/vue-icon/src/synchronize.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Synchronize from '@opentiny/vue-theme/svgs/synchronize.svg' + +export default () => svg({ name: 'IconSynchronize', component: Synchronize, filledComponent: Synchronize })() diff --git a/packages/vue-icon/src/synchronize/index.ts b/packages/vue-icon/src/synchronize/index.ts deleted file mode 100644 index 4935401a95..0000000000 --- a/packages/vue-icon/src/synchronize/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Synchronize from '@opentiny/vue-theme/svgs/synchronize.svg' - -export default () => svg({ name: 'IconSynchronize', component: Synchronize })() diff --git a/packages/vue-icon/src/table-mode.ts b/packages/vue-icon/src/table-mode.ts new file mode 100644 index 0000000000..d38dddc986 --- /dev/null +++ b/packages/vue-icon/src/table-mode.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import TableMode from '@opentiny/vue-theme/svgs/table-mode.svg' + +export default () => svg({ name: 'IconTableMode', component: TableMode, filledComponent: TableMode })() diff --git a/packages/vue-icon/src/table-mode/index.ts b/packages/vue-icon/src/table-mode/index.ts deleted file mode 100644 index 0df7de75bb..0000000000 --- a/packages/vue-icon/src/table-mode/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import TableMode from '@opentiny/vue-theme/svgs/table-mode.svg' - -export default () => svg({ name: 'IconTableMode', component: TableMode })() diff --git a/packages/vue-icon/src/tablet-view.ts b/packages/vue-icon/src/tablet-view.ts new file mode 100644 index 0000000000..e94baedbfe --- /dev/null +++ b/packages/vue-icon/src/tablet-view.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import TabletView from '@opentiny/vue-theme/svgs/tablet-view.svg' + +export default () => svg({ name: 'IconTabletView', component: TabletView, filledComponent: TabletView })() diff --git a/packages/vue-icon/src/tablet-view/index.ts b/packages/vue-icon/src/tablet-view/index.ts deleted file mode 100644 index 2790c2a332..0000000000 --- a/packages/vue-icon/src/tablet-view/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import TabletView from '@opentiny/vue-theme/svgs/tablet-view.svg' - -export default () => svg({ name: 'IconTabletView', component: TabletView })() diff --git a/packages/vue-icon/src/task-cooperation.ts b/packages/vue-icon/src/task-cooperation.ts new file mode 100644 index 0000000000..b54e527b77 --- /dev/null +++ b/packages/vue-icon/src/task-cooperation.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import TaskCooperation from '@opentiny/vue-theme/svgs/task-cooperation.svg' + +export default () => + svg({ name: 'IconTaskCooperation', component: TaskCooperation, filledComponent: TaskCooperation })() diff --git a/packages/vue-icon/src/task-cooperation/index.ts b/packages/vue-icon/src/task-cooperation/index.ts deleted file mode 100644 index 0bd31608d1..0000000000 --- a/packages/vue-icon/src/task-cooperation/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import TaskCooperation from '@opentiny/vue-theme/svgs/task-cooperation.svg' - -export default () => svg({ name: 'IconTaskCooperation', component: TaskCooperation })() diff --git a/packages/vue-icon/src/teams.ts b/packages/vue-icon/src/teams.ts new file mode 100644 index 0000000000..bfc65005d4 --- /dev/null +++ b/packages/vue-icon/src/teams.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Teams from '@opentiny/vue-theme/svgs/teams.svg' + +export default () => svg({ name: 'IconTeams', component: Teams, filledComponent: Teams })() diff --git a/packages/vue-icon/src/teams/index.ts b/packages/vue-icon/src/teams/index.ts deleted file mode 100644 index ce73ce404f..0000000000 --- a/packages/vue-icon/src/teams/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Teams from '@opentiny/vue-theme/svgs/teams.svg' - -export default () => svg({ name: 'IconTeams', component: Teams })() diff --git a/packages/vue-icon/src/telephone-circle.ts b/packages/vue-icon/src/telephone-circle.ts new file mode 100644 index 0000000000..7e75b7fd7b --- /dev/null +++ b/packages/vue-icon/src/telephone-circle.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import TelephoneCircle from '@opentiny/vue-theme/svgs/telephone-circle.svg' + +export default () => + svg({ name: 'IconTelephoneCircle', component: TelephoneCircle, filledComponent: TelephoneCircle })() diff --git a/packages/vue-icon/src/telephone-circle/index.ts b/packages/vue-icon/src/telephone-circle/index.ts deleted file mode 100644 index 3f1de4f162..0000000000 --- a/packages/vue-icon/src/telephone-circle/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import TelephoneCircle from '@opentiny/vue-theme/svgs/telephone-circle.svg' - -export default () => svg({ name: 'IconTelephoneCircle', component: TelephoneCircle })() diff --git a/packages/vue-icon/src/telephone.ts b/packages/vue-icon/src/telephone.ts new file mode 100644 index 0000000000..7c37e07aa5 --- /dev/null +++ b/packages/vue-icon/src/telephone.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Telephone from '@opentiny/vue-theme/svgs/telephone.svg' + +export default () => svg({ name: 'IconTelephone', component: Telephone, filledComponent: Telephone })() diff --git a/packages/vue-icon/src/telephone/index.ts b/packages/vue-icon/src/telephone/index.ts deleted file mode 100644 index 613148e335..0000000000 --- a/packages/vue-icon/src/telephone/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Telephone from '@opentiny/vue-theme/svgs/telephone.svg' - -export default () => svg({ name: 'IconTelephone', component: Telephone })() diff --git a/packages/vue-icon/src/text-align.ts b/packages/vue-icon/src/text-align.ts new file mode 100644 index 0000000000..85568ef968 --- /dev/null +++ b/packages/vue-icon/src/text-align.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import TextAlign from '@opentiny/vue-theme/svgs/text-align.svg' + +export default () => svg({ name: 'IconTextAlign', component: TextAlign, filledComponent: TextAlign })() diff --git a/packages/vue-icon/src/text-align/index.ts b/packages/vue-icon/src/text-align/index.ts deleted file mode 100644 index 8c7cd1283e..0000000000 --- a/packages/vue-icon/src/text-align/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import TextAlign from '@opentiny/vue-theme/svgs/text-align.svg' - -export default () => svg({ name: 'IconTextAlign', component: TextAlign })() diff --git a/packages/vue-icon/src/text-decoration.ts b/packages/vue-icon/src/text-decoration.ts new file mode 100644 index 0000000000..c06f330e25 --- /dev/null +++ b/packages/vue-icon/src/text-decoration.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import TextDecoration from '@opentiny/vue-theme/svgs/text-decoration.svg' + +export default () => svg({ name: 'IconTextDecoration', component: TextDecoration, filledComponent: TextDecoration })() diff --git a/packages/vue-icon/src/text-decoration/index.ts b/packages/vue-icon/src/text-decoration/index.ts deleted file mode 100644 index eb6a4a3951..0000000000 --- a/packages/vue-icon/src/text-decoration/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import TextDecoration from '@opentiny/vue-theme/svgs/text-decoration.svg' - -export default () => svg({ name: 'IconTextDecoration', component: TextDecoration })() diff --git a/packages/vue-icon/src/text-tab.ts b/packages/vue-icon/src/text-tab.ts new file mode 100644 index 0000000000..e4fbbc3466 --- /dev/null +++ b/packages/vue-icon/src/text-tab.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import TextTab from '@opentiny/vue-theme/svgs/text-tab.svg' + +export default () => svg({ name: 'IconTextTab', component: TextTab, filledComponent: TextTab })() diff --git a/packages/vue-icon/src/text-tab/index.ts b/packages/vue-icon/src/text-tab/index.ts deleted file mode 100644 index 6c6a0f4945..0000000000 --- a/packages/vue-icon/src/text-tab/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import TextTab from '@opentiny/vue-theme/svgs/text-tab.svg' - -export default () => svg({ name: 'IconTextTab', component: TextTab })() diff --git a/packages/vue-icon/src/text-type.ts b/packages/vue-icon/src/text-type.ts new file mode 100644 index 0000000000..12e14eb70c --- /dev/null +++ b/packages/vue-icon/src/text-type.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import TextType from '@opentiny/vue-theme/svgs/text-type.svg' + +export default () => svg({ name: 'IconTextType', component: TextType, filledComponent: TextType })() diff --git a/packages/vue-icon/src/text-type/index.ts b/packages/vue-icon/src/text-type/index.ts deleted file mode 100644 index 423539e428..0000000000 --- a/packages/vue-icon/src/text-type/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import TextType from '@opentiny/vue-theme/svgs/text-type.svg' - -export default () => svg({ name: 'IconTextType', component: TextType })() diff --git a/packages/vue-icon/src/text.ts b/packages/vue-icon/src/text.ts new file mode 100644 index 0000000000..70dfcb4012 --- /dev/null +++ b/packages/vue-icon/src/text.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Text from '@opentiny/vue-theme/svgs/text.svg' + +export default () => svg({ name: 'IconText', component: Text, filledComponent: Text })() diff --git a/packages/vue-icon/src/text/index.ts b/packages/vue-icon/src/text/index.ts deleted file mode 100644 index add6653ffe..0000000000 --- a/packages/vue-icon/src/text/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Text from '@opentiny/vue-theme/svgs/text.svg' - -export default () => svg({ name: 'IconText', component: Text })() diff --git a/packages/vue-icon/src/time.ts b/packages/vue-icon/src/time.ts new file mode 100644 index 0000000000..462c5a2583 --- /dev/null +++ b/packages/vue-icon/src/time.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Time from '@opentiny/vue-theme/svgs/time.svg' + +export default () => svg({ name: 'IconTime', component: Time, filledComponent: Time })() diff --git a/packages/vue-icon/src/time/index.ts b/packages/vue-icon/src/time/index.ts deleted file mode 100644 index a02a0de9c6..0000000000 --- a/packages/vue-icon/src/time/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Time from '@opentiny/vue-theme/svgs/time.svg' - -export default () => svg({ name: 'IconTime', component: Time })() diff --git a/packages/vue-icon/src/to-be-uploaded.ts b/packages/vue-icon/src/to-be-uploaded.ts new file mode 100644 index 0000000000..4a87b2af47 --- /dev/null +++ b/packages/vue-icon/src/to-be-uploaded.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ToBeUploaded from '@opentiny/vue-theme/svgs/to-be-uploaded.svg' + +export default () => svg({ name: 'IconToBeUploaded', component: ToBeUploaded, filledComponent: ToBeUploaded })() diff --git a/packages/vue-icon/src/to-be-uploaded/index.ts b/packages/vue-icon/src/to-be-uploaded/index.ts deleted file mode 100644 index f4a882bde7..0000000000 --- a/packages/vue-icon/src/to-be-uploaded/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ToBeUploaded from '@opentiny/vue-theme/svgs/to-be-uploaded.svg' - -export default () => svg({ name: 'IconToBeUploaded', component: ToBeUploaded })() diff --git a/packages/vue-icon/src/total-nolume.ts b/packages/vue-icon/src/total-nolume.ts new file mode 100644 index 0000000000..d8d5f94d84 --- /dev/null +++ b/packages/vue-icon/src/total-nolume.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import TotalNolume from '@opentiny/vue-theme/svgs/total-nolume.svg' + +export default () => svg({ name: 'IconTotalNolume', component: TotalNolume, filledComponent: TotalNolume })() diff --git a/packages/vue-icon/src/total-nolume/index.ts b/packages/vue-icon/src/total-nolume/index.ts deleted file mode 100644 index e29005cdff..0000000000 --- a/packages/vue-icon/src/total-nolume/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import TotalNolume from '@opentiny/vue-theme/svgs/total-nolume.svg' - -export default () => svg({ name: 'IconTotalNolume', component: TotalNolume })() diff --git a/packages/vue-icon/src/total-number.ts b/packages/vue-icon/src/total-number.ts new file mode 100644 index 0000000000..e2e65c6575 --- /dev/null +++ b/packages/vue-icon/src/total-number.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import TotalNumber from '@opentiny/vue-theme/svgs/total-number.svg' + +export default () => svg({ name: 'IconTotalNumber', component: TotalNumber, filledComponent: TotalNumber })() diff --git a/packages/vue-icon/src/total-number/index.ts b/packages/vue-icon/src/total-number/index.ts deleted file mode 100644 index ed345cc6f5..0000000000 --- a/packages/vue-icon/src/total-number/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import TotalNumber from '@opentiny/vue-theme/svgs/total-number.svg' - -export default () => svg({ name: 'IconTotalNumber', component: TotalNumber })() diff --git a/packages/vue-icon/src/total-weight.ts b/packages/vue-icon/src/total-weight.ts new file mode 100644 index 0000000000..c185553d52 --- /dev/null +++ b/packages/vue-icon/src/total-weight.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import TotalWeight from '@opentiny/vue-theme/svgs/total-weight.svg' + +export default () => svg({ name: 'IconTotalWeight', component: TotalWeight, filledComponent: TotalWeight })() diff --git a/packages/vue-icon/src/total-weight/index.ts b/packages/vue-icon/src/total-weight/index.ts deleted file mode 100644 index 7226565490..0000000000 --- a/packages/vue-icon/src/total-weight/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import TotalWeight from '@opentiny/vue-theme/svgs/total-weight.svg' - -export default () => svg({ name: 'IconTotalWeight', component: TotalWeight })() diff --git a/packages/vue-icon/src/total.ts b/packages/vue-icon/src/total.ts new file mode 100644 index 0000000000..6a4d0c4c1a --- /dev/null +++ b/packages/vue-icon/src/total.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Total from '@opentiny/vue-theme/svgs/total.svg' + +export default () => svg({ name: 'IconTotal', component: Total, filledComponent: Total })() diff --git a/packages/vue-icon/src/total/index.ts b/packages/vue-icon/src/total/index.ts deleted file mode 100644 index 8c850fa390..0000000000 --- a/packages/vue-icon/src/total/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Total from '@opentiny/vue-theme/svgs/total.svg' - -export default () => svg({ name: 'IconTotal', component: Total })() diff --git a/packages/vue-icon/src/transform.ts b/packages/vue-icon/src/transform.ts new file mode 100644 index 0000000000..6bcb5ec3dd --- /dev/null +++ b/packages/vue-icon/src/transform.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Transform from '@opentiny/vue-theme/svgs/transform.svg' + +export default () => svg({ name: 'IconTransform', component: Transform, filledComponent: Transform })() diff --git a/packages/vue-icon/src/transform/index.ts b/packages/vue-icon/src/transform/index.ts deleted file mode 100644 index 22dd2821bd..0000000000 --- a/packages/vue-icon/src/transform/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import Transform from '@opentiny/vue-theme/svgs/transform.svg' - -export default () => svg({ name: 'IconTransform', component: Transform })() diff --git a/packages/vue-icon/src/triangle-down.ts b/packages/vue-icon/src/triangle-down.ts new file mode 100644 index 0000000000..d9ff814eed --- /dev/null +++ b/packages/vue-icon/src/triangle-down.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import TriangleDown from '@opentiny/vue-theme/svgs/triangle-down.svg' + +export default () => svg({ name: 'IconTriangleDown', component: TriangleDown, filledComponent: TriangleDown })() diff --git a/packages/vue-icon/src/triangle-down/index.ts b/packages/vue-icon/src/triangle-down/index.ts deleted file mode 100644 index 487b0c90e4..0000000000 --- a/packages/vue-icon/src/triangle-down/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import TriangleDown from '@opentiny/vue-theme/svgs/triangle-down.svg' - -export default () => svg({ name: 'IconTriangleDown', component: TriangleDown })() diff --git a/packages/vue-icon/src/triangle-up.ts b/packages/vue-icon/src/triangle-up.ts new file mode 100644 index 0000000000..908590e4a6 --- /dev/null +++ b/packages/vue-icon/src/triangle-up.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import TriangleUp from '@opentiny/vue-theme/svgs/triangle-up.svg' + +export default () => svg({ name: 'IconTriangleUp', component: TriangleUp, filledComponent: TriangleUp })() diff --git a/packages/vue-icon/src/triangle-up/index.ts b/packages/vue-icon/src/triangle-up/index.ts deleted file mode 100644 index 121e8707e0..0000000000 --- a/packages/vue-icon/src/triangle-up/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import TriangleUp from '@opentiny/vue-theme/svgs/triangle-up.svg' - -export default () => svg({ name: 'IconTriangleUp', component: TriangleUp })() diff --git a/packages/vue-icon/src/turn-on.ts b/packages/vue-icon/src/turn-on.ts new file mode 100644 index 0000000000..ad82ba4a20 --- /dev/null +++ b/packages/vue-icon/src/turn-on.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import TurnOn from '@opentiny/vue-theme/svgs/turn-on.svg' + +export default () => svg({ name: 'IconTurnOn', component: TurnOn, filledComponent: TurnOn })() diff --git a/packages/vue-icon/src/turn-on/index.ts b/packages/vue-icon/src/turn-on/index.ts deleted file mode 100644 index 32b7547c19..0000000000 --- a/packages/vue-icon/src/turn-on/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import TurnOn from '@opentiny/vue-theme/svgs/turn-on.svg' - -export default () => svg({ name: 'IconTurnOn', component: TurnOn })() diff --git a/packages/vue-icon/src/undelete.ts b/packages/vue-icon/src/undelete.ts new file mode 100644 index 0000000000..24b1c5dfac --- /dev/null +++ b/packages/vue-icon/src/undelete.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Undelete from '@opentiny/vue-theme/svgs/undelete.svg' + +export default () => svg({ name: 'IconUndelete', component: Undelete, filledComponent: Undelete })() diff --git a/packages/vue-icon/src/undelete/index.ts b/packages/vue-icon/src/undelete/index.ts deleted file mode 100644 index bf2eecbb8f..0000000000 --- a/packages/vue-icon/src/undelete/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Undelete from '@opentiny/vue-theme/svgs/undelete.svg' - -export default () => svg({ name: 'IconUndelete', component: Undelete })() diff --git a/packages/vue-icon/src/under-review.ts b/packages/vue-icon/src/under-review.ts new file mode 100644 index 0000000000..46c3835ddd --- /dev/null +++ b/packages/vue-icon/src/under-review.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import UnderReview from '@opentiny/vue-theme/svgs/under-review.svg' + +export default () => svg({ name: 'IconUnderReview', component: UnderReview, filledComponent: UnderReview })() diff --git a/packages/vue-icon/src/under-review/index.ts b/packages/vue-icon/src/under-review/index.ts deleted file mode 100644 index 623d231a95..0000000000 --- a/packages/vue-icon/src/under-review/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import UnderReview from '@opentiny/vue-theme/svgs/under-review.svg' - -export default () => svg({ name: 'IconUnderReview', component: UnderReview })() diff --git a/packages/vue-icon/src/underline.ts b/packages/vue-icon/src/underline.ts new file mode 100644 index 0000000000..ddc32e06be --- /dev/null +++ b/packages/vue-icon/src/underline.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Underline from '@opentiny/vue-theme/svgs/underline.svg' + +export default () => svg({ name: 'IconUnderline', component: Underline, filledComponent: Underline })() diff --git a/packages/vue-icon/src/underline/index.ts b/packages/vue-icon/src/underline/index.ts deleted file mode 100644 index ade0b123e7..0000000000 --- a/packages/vue-icon/src/underline/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Underline from '@opentiny/vue-theme/svgs/underline.svg' - -export default () => svg({ name: 'IconUnderline', component: Underline })() diff --git a/packages/vue-icon/src/undo.ts b/packages/vue-icon/src/undo.ts new file mode 100644 index 0000000000..84f19bc256 --- /dev/null +++ b/packages/vue-icon/src/undo.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Undo from '@opentiny/vue-theme/svgs/undo.svg' + +export default () => svg({ name: 'IconUndo', component: Undo, filledComponent: Undo })() diff --git a/packages/vue-icon/src/undo/index.ts b/packages/vue-icon/src/undo/index.ts deleted file mode 100644 index 8a10a0dd0b..0000000000 --- a/packages/vue-icon/src/undo/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Undo from '@opentiny/vue-theme/svgs/undo.svg' - -export default () => svg({ name: 'IconUndo', component: Undo })() diff --git a/packages/vue-icon/src/unfilter.ts b/packages/vue-icon/src/unfilter.ts new file mode 100644 index 0000000000..99b4f3d1c9 --- /dev/null +++ b/packages/vue-icon/src/unfilter.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Unfilter from '@opentiny/vue-theme/svgs/unfilter.svg' + +export default () => svg({ name: 'IconUnfilter', component: Unfilter, filledComponent: Unfilter })() diff --git a/packages/vue-icon/src/unfilter/index.ts b/packages/vue-icon/src/unfilter/index.ts deleted file mode 100644 index 433e8b1730..0000000000 --- a/packages/vue-icon/src/unfilter/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Unfilter from '@opentiny/vue-theme/svgs/unfilter.svg' - -export default () => svg({ name: 'IconUnfilter', component: Unfilter })() diff --git a/packages/vue-icon/src/unfreeze.ts b/packages/vue-icon/src/unfreeze.ts new file mode 100644 index 0000000000..5d7d1d503a --- /dev/null +++ b/packages/vue-icon/src/unfreeze.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Unfreeze from '@opentiny/vue-theme/svgs/unfreeze.svg' + +export default () => svg({ name: 'IconUnfreeze', component: Unfreeze, filledComponent: Unfreeze })() diff --git a/packages/vue-icon/src/unfreeze/index.ts b/packages/vue-icon/src/unfreeze/index.ts deleted file mode 100644 index a7bd1b4c72..0000000000 --- a/packages/vue-icon/src/unfreeze/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Unfreeze from '@opentiny/vue-theme/svgs/unfreeze.svg' - -export default () => svg({ name: 'IconUnfreeze', component: Unfreeze })() diff --git a/packages/vue-icon/src/unknow.ts b/packages/vue-icon/src/unknow.ts new file mode 100644 index 0000000000..10fb10c82d --- /dev/null +++ b/packages/vue-icon/src/unknow.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Unknow from '@opentiny/vue-theme/svgs/unknow.svg' + +export default () => svg({ name: 'IconUnknow', component: Unknow, filledComponent: Unknow })() diff --git a/packages/vue-icon/src/unknow/index.ts b/packages/vue-icon/src/unknow/index.ts deleted file mode 100644 index 45d7d584ea..0000000000 --- a/packages/vue-icon/src/unknow/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Unknow from '@opentiny/vue-theme/svgs/unknow.svg' - -export default () => svg({ name: 'IconUnknow', component: Unknow })() diff --git a/packages/vue-icon/src/unknown.ts b/packages/vue-icon/src/unknown.ts new file mode 100644 index 0000000000..229fa63c54 --- /dev/null +++ b/packages/vue-icon/src/unknown.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Unknown from '@opentiny/vue-theme/svgs/unknown.svg' + +export default () => svg({ name: 'IconUnknown', component: Unknown, filledComponent: Unknown })() diff --git a/packages/vue-icon/src/unknown/index.ts b/packages/vue-icon/src/unknown/index.ts deleted file mode 100644 index bbe72e3ace..0000000000 --- a/packages/vue-icon/src/unknown/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Unknown from '@opentiny/vue-theme/svgs/unknown.svg' - -export default () => svg({ name: 'IconUnknown', component: Unknown })() diff --git a/packages/vue-icon/src/unlock.ts b/packages/vue-icon/src/unlock.ts new file mode 100644 index 0000000000..636f23de00 --- /dev/null +++ b/packages/vue-icon/src/unlock.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Unlock from '@opentiny/vue-theme/svgs/unlock.svg' + +export default () => svg({ name: 'IconUnlock', component: Unlock, filledComponent: Unlock })() diff --git a/packages/vue-icon/src/unlock/index.ts b/packages/vue-icon/src/unlock/index.ts deleted file mode 100644 index 210da8126a..0000000000 --- a/packages/vue-icon/src/unlock/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Unlock from '@opentiny/vue-theme/svgs/unlock.svg' - -export default () => svg({ name: 'IconUnlock', component: Unlock })() diff --git a/packages/vue-icon/src/unsent.ts b/packages/vue-icon/src/unsent.ts new file mode 100644 index 0000000000..f1092fb0dd --- /dev/null +++ b/packages/vue-icon/src/unsent.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Unsent from '@opentiny/vue-theme/svgs/unsent.svg' + +export default () => svg({ name: 'IconUnsent', component: Unsent, filledComponent: Unsent })() diff --git a/packages/vue-icon/src/unsent/index.ts b/packages/vue-icon/src/unsent/index.ts deleted file mode 100644 index dcbdd2d97e..0000000000 --- a/packages/vue-icon/src/unsent/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Unsent from '@opentiny/vue-theme/svgs/unsent.svg' - -export default () => svg({ name: 'IconUnsent', component: Unsent })() diff --git a/packages/vue-icon/src/unsubmitted.ts b/packages/vue-icon/src/unsubmitted.ts new file mode 100644 index 0000000000..82484e778d --- /dev/null +++ b/packages/vue-icon/src/unsubmitted.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Unsubmitted from '@opentiny/vue-theme/svgs/unsubmitted.svg' + +export default () => svg({ name: 'IconUnsubmitted', component: Unsubmitted, filledComponent: Unsubmitted })() diff --git a/packages/vue-icon/src/unsubmitted/index.ts b/packages/vue-icon/src/unsubmitted/index.ts deleted file mode 100644 index 2f3aea2f1d..0000000000 --- a/packages/vue-icon/src/unsubmitted/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Unsubmitted from '@opentiny/vue-theme/svgs/unsubmitted.svg' - -export default () => svg({ name: 'IconUnsubmitted', component: Unsubmitted })() diff --git a/packages/vue-icon/src/up-and-down-arrow-inner.ts b/packages/vue-icon/src/up-and-down-arrow-inner.ts new file mode 100644 index 0000000000..a3581980e7 --- /dev/null +++ b/packages/vue-icon/src/up-and-down-arrow-inner.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import UpAndDownArrowInner from '@opentiny/vue-theme/svgs/up-and-down-arrow-inner.svg' + +export default () => + svg({ name: 'IconUpAndDownArrowInner', component: UpAndDownArrowInner, filledComponent: UpAndDownArrowInner })() diff --git a/packages/vue-icon/src/up-and-down-arrow-inner/index.ts b/packages/vue-icon/src/up-and-down-arrow-inner/index.ts deleted file mode 100644 index 6354e62a9e..0000000000 --- a/packages/vue-icon/src/up-and-down-arrow-inner/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import UpAndDownArrowInner from '@opentiny/vue-theme/svgs/up-and-down-arrow-inner.svg' - -export default () => svg({ name: 'IconUpAndDownArrowInner', component: UpAndDownArrowInner })() diff --git a/packages/vue-icon/src/up-and-down-arrow-outer.ts b/packages/vue-icon/src/up-and-down-arrow-outer.ts new file mode 100644 index 0000000000..a86fd75027 --- /dev/null +++ b/packages/vue-icon/src/up-and-down-arrow-outer.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import UpAndDownArrowOuter from '@opentiny/vue-theme/svgs/up-and-down-arrow-outer.svg' + +export default () => + svg({ name: 'IconUpAndDownArrowOuter', component: UpAndDownArrowOuter, filledComponent: UpAndDownArrowOuter })() diff --git a/packages/vue-icon/src/up-and-down-arrow-outer/index.ts b/packages/vue-icon/src/up-and-down-arrow-outer/index.ts deleted file mode 100644 index 890daba417..0000000000 --- a/packages/vue-icon/src/up-and-down-arrow-outer/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import UpAndDownArrowOuter from '@opentiny/vue-theme/svgs/up-and-down-arrow-outer.svg' - -export default () => svg({ name: 'IconUpAndDownArrowOuter', component: UpAndDownArrowOuter })() diff --git a/packages/vue-icon/src/up-o.ts b/packages/vue-icon/src/up-o.ts new file mode 100644 index 0000000000..759e333d9b --- /dev/null +++ b/packages/vue-icon/src/up-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import UpO from '@opentiny/vue-theme/svgs/up-o.svg' + +export default () => svg({ name: 'IconUpO', component: UpO, filledComponent: UpO })() diff --git a/packages/vue-icon/src/up-o/index.ts b/packages/vue-icon/src/up-o/index.ts deleted file mode 100644 index 0b445d1835..0000000000 --- a/packages/vue-icon/src/up-o/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import UpO from '@opentiny/vue-theme/svgs/up-o.svg' - -export default () => svg({ name: 'IconUpO', component: UpO })() diff --git a/packages/vue-icon/src/up-ward.ts b/packages/vue-icon/src/up-ward.ts new file mode 100644 index 0000000000..85453bdafa --- /dev/null +++ b/packages/vue-icon/src/up-ward.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import UpWard from '@opentiny/vue-theme/svgs/up-ward.svg' + +export default () => svg({ name: 'IconUpWard', component: UpWard, filledComponent: UpWard })() diff --git a/packages/vue-icon/src/up-ward/index.ts b/packages/vue-icon/src/up-ward/index.ts deleted file mode 100644 index de0329117e..0000000000 --- a/packages/vue-icon/src/up-ward/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import UpWard from '@opentiny/vue-theme/svgs/up-ward.svg' - -export default () => svg({ name: 'IconUpWard', component: UpWard })() diff --git a/packages/vue-icon/src/up.ts b/packages/vue-icon/src/up.ts new file mode 100644 index 0000000000..2f3fab86da --- /dev/null +++ b/packages/vue-icon/src/up.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Up from '@opentiny/vue-theme/svgs/up.svg' + +export default () => svg({ name: 'IconUp', component: Up, filledComponent: Up })() diff --git a/packages/vue-icon/src/up/index.ts b/packages/vue-icon/src/up/index.ts deleted file mode 100644 index c8feb5e708..0000000000 --- a/packages/vue-icon/src/up/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Up from '@opentiny/vue-theme/svgs/up.svg' - -export default () => svg({ name: 'IconUp', component: Up })() diff --git a/packages/vue-icon/src/update.ts b/packages/vue-icon/src/update.ts new file mode 100644 index 0000000000..fcfdac373e --- /dev/null +++ b/packages/vue-icon/src/update.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Update from '@opentiny/vue-theme/svgs/update.svg' + +export default () => svg({ name: 'IconUpdate', component: Update, filledComponent: Update })() diff --git a/packages/vue-icon/src/update/index.ts b/packages/vue-icon/src/update/index.ts deleted file mode 100644 index 15d8c91408..0000000000 --- a/packages/vue-icon/src/update/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Update from '@opentiny/vue-theme/svgs/update.svg' - -export default () => svg({ name: 'IconUpdate', component: Update })() diff --git a/packages/vue-icon/src/upgrading.ts b/packages/vue-icon/src/upgrading.ts new file mode 100644 index 0000000000..ddc48f1858 --- /dev/null +++ b/packages/vue-icon/src/upgrading.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Upgrading from '@opentiny/vue-theme/svgs/upgrading.svg' + +export default () => svg({ name: 'IconUpgrading', component: Upgrading, filledComponent: Upgrading })() diff --git a/packages/vue-icon/src/upgrading/index.ts b/packages/vue-icon/src/upgrading/index.ts deleted file mode 100644 index fa1a9fbc9a..0000000000 --- a/packages/vue-icon/src/upgrading/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import Upgrading from '@opentiny/vue-theme/svgs/upgrading.svg' - -export default () => svg({ name: 'IconUpgrading', component: Upgrading })() diff --git a/packages/vue-icon/src/upload.ts b/packages/vue-icon/src/upload.ts new file mode 100644 index 0000000000..17a72b0a3e --- /dev/null +++ b/packages/vue-icon/src/upload.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Upload from '@opentiny/vue-theme/svgs/upload.svg' + +export default () => svg({ name: 'IconUpload', component: Upload, filledComponent: Upload })() diff --git a/packages/vue-icon/src/upload/index.ts b/packages/vue-icon/src/upload/index.ts deleted file mode 100644 index 88abfc896c..0000000000 --- a/packages/vue-icon/src/upload/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Upload from '@opentiny/vue-theme/svgs/upload.svg' - -export default () => svg({ name: 'IconUpload', component: Upload })() diff --git a/packages/vue-icon/src/user.ts b/packages/vue-icon/src/user.ts new file mode 100644 index 0000000000..803f2db8d8 --- /dev/null +++ b/packages/vue-icon/src/user.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import User from '@opentiny/vue-theme/svgs/user.svg' + +export default () => svg({ name: 'IconUser', component: User, filledComponent: User })() diff --git a/packages/vue-icon/src/user/index.ts b/packages/vue-icon/src/user/index.ts deleted file mode 100644 index 91ffb070b6..0000000000 --- a/packages/vue-icon/src/user/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import User from '@opentiny/vue-theme/svgs/user.svg' - -export default () => svg({ name: 'IconUser', component: User })() diff --git a/packages/vue-icon/src/versiontree.ts b/packages/vue-icon/src/versiontree.ts new file mode 100644 index 0000000000..3ef40224d0 --- /dev/null +++ b/packages/vue-icon/src/versiontree.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Versiontree from '@opentiny/vue-theme/svgs/versiontree.svg' + +export default () => svg({ name: 'IconVersiontree', component: Versiontree, filledComponent: Versiontree })() diff --git a/packages/vue-icon/src/versiontree/index.ts b/packages/vue-icon/src/versiontree/index.ts deleted file mode 100644 index bb897e13fe..0000000000 --- a/packages/vue-icon/src/versiontree/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Versiontree from '@opentiny/vue-theme/svgs/versiontree.svg' - -export default () => svg({ name: 'IconVersiontree', component: Versiontree })() diff --git a/packages/vue-icon/src/video-type.ts b/packages/vue-icon/src/video-type.ts new file mode 100644 index 0000000000..e5221abc35 --- /dev/null +++ b/packages/vue-icon/src/video-type.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import VideoType from '@opentiny/vue-theme/svgs/video-type.svg' + +export default () => svg({ name: 'IconVideoType', component: VideoType, filledComponent: VideoType })() diff --git a/packages/vue-icon/src/video-type/index.ts b/packages/vue-icon/src/video-type/index.ts deleted file mode 100644 index bfb900f3f5..0000000000 --- a/packages/vue-icon/src/video-type/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import VideoType from '@opentiny/vue-theme/svgs/video-type.svg' - -export default () => svg({ name: 'IconVideoType', component: VideoType })() diff --git a/packages/vue-icon/src/view-flowchart.ts b/packages/vue-icon/src/view-flowchart.ts new file mode 100644 index 0000000000..32fad6e5cc --- /dev/null +++ b/packages/vue-icon/src/view-flowchart.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ViewFlowchart from '@opentiny/vue-theme/svgs/view-flowchart.svg' + +export default () => svg({ name: 'IconViewFlowchart', component: ViewFlowchart, filledComponent: ViewFlowchart })() diff --git a/packages/vue-icon/src/view-flowchart/index.ts b/packages/vue-icon/src/view-flowchart/index.ts deleted file mode 100644 index f090a65d68..0000000000 --- a/packages/vue-icon/src/view-flowchart/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ViewFlowchart from '@opentiny/vue-theme/svgs/view-flowchart.svg' - -export default () => svg({ name: 'IconViewFlowchart', component: ViewFlowchart })() diff --git a/packages/vue-icon/src/view.ts b/packages/vue-icon/src/view.ts new file mode 100644 index 0000000000..5ebeae1b40 --- /dev/null +++ b/packages/vue-icon/src/view.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import View from '@opentiny/vue-theme/svgs/view.svg' + +export default () => svg({ name: 'IconView', component: View, filledComponent: View })() diff --git a/packages/vue-icon/src/view/index.ts b/packages/vue-icon/src/view/index.ts deleted file mode 100644 index 920f2a695b..0000000000 --- a/packages/vue-icon/src/view/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import View from '@opentiny/vue-theme/svgs/view.svg' - -export default () => svg({ name: 'IconView', component: View })() diff --git a/packages/vue-icon/src/vuejs.ts b/packages/vue-icon/src/vuejs.ts new file mode 100644 index 0000000000..c0b1965088 --- /dev/null +++ b/packages/vue-icon/src/vuejs.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Vuejs from '@opentiny/vue-theme/svgs/vuejs.svg' + +export default () => svg({ name: 'IconVuejs', component: Vuejs, filledComponent: Vuejs })() diff --git a/packages/vue-icon/src/vuejs/index.ts b/packages/vue-icon/src/vuejs/index.ts deleted file mode 100644 index d38dee132f..0000000000 --- a/packages/vue-icon/src/vuejs/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Vuejs from '@opentiny/vue-theme/svgs/vuejs.svg' - -export default () => svg({ name: 'IconVuejs', component: Vuejs })() diff --git a/packages/vue-icon/src/wait-for-delivery-o.ts b/packages/vue-icon/src/wait-for-delivery-o.ts new file mode 100644 index 0000000000..b8829f4e9a --- /dev/null +++ b/packages/vue-icon/src/wait-for-delivery-o.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import WaitForDeliveryO from '@opentiny/vue-theme/svgs/wait-for-delivery-o.svg' + +export default () => + svg({ name: 'IconWaitForDeliveryO', component: WaitForDeliveryO, filledComponent: WaitForDeliveryO })() diff --git a/packages/vue-icon/src/wait-for-delivery-o/index.ts b/packages/vue-icon/src/wait-for-delivery-o/index.ts deleted file mode 100644 index 02fcd97514..0000000000 --- a/packages/vue-icon/src/wait-for-delivery-o/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import WaitForDeliveryO from '@opentiny/vue-theme/svgs/wait-for-delivery-o.svg' - -export default () => svg({ name: 'IconWaitForDeliveryO', component: WaitForDeliveryO })() diff --git a/packages/vue-icon/src/wait-for-delivery.ts b/packages/vue-icon/src/wait-for-delivery.ts new file mode 100644 index 0000000000..b32910ec76 --- /dev/null +++ b/packages/vue-icon/src/wait-for-delivery.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import WaitForDelivery from '@opentiny/vue-theme/svgs/wait-for-delivery.svg' + +export default () => + svg({ name: 'IconWaitForDelivery', component: WaitForDelivery, filledComponent: WaitForDelivery })() diff --git a/packages/vue-icon/src/wait-for-delivery/index.ts b/packages/vue-icon/src/wait-for-delivery/index.ts deleted file mode 100644 index 37da89b906..0000000000 --- a/packages/vue-icon/src/wait-for-delivery/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import WaitForDelivery from '@opentiny/vue-theme/svgs/wait-for-delivery.svg' - -export default () => svg({ name: 'IconWaitForDelivery', component: WaitForDelivery })() diff --git a/packages/vue-icon/src/waiting-for-receipt.ts b/packages/vue-icon/src/waiting-for-receipt.ts new file mode 100644 index 0000000000..8c225e148a --- /dev/null +++ b/packages/vue-icon/src/waiting-for-receipt.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import WaitingForReceipt from '@opentiny/vue-theme/svgs/waiting-for-receipt.svg' + +export default () => + svg({ name: 'IconWaitingForReceipt', component: WaitingForReceipt, filledComponent: WaitingForReceipt })() diff --git a/packages/vue-icon/src/waiting-for-receipt/index.ts b/packages/vue-icon/src/waiting-for-receipt/index.ts deleted file mode 100644 index 7380d61fb7..0000000000 --- a/packages/vue-icon/src/waiting-for-receipt/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import WaitingForReceipt from '@opentiny/vue-theme/svgs/waiting-for-receipt.svg' - -export default () => svg({ name: 'IconWaitingForReceipt', component: WaitingForReceipt })() diff --git a/packages/vue-icon/src/waiting-for-submission.ts b/packages/vue-icon/src/waiting-for-submission.ts new file mode 100644 index 0000000000..20755bdd95 --- /dev/null +++ b/packages/vue-icon/src/waiting-for-submission.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import WaitingForSubmission from '@opentiny/vue-theme/svgs/waiting-for-submission.svg' + +export default () => + svg({ name: 'IconWaitingForSubmission', component: WaitingForSubmission, filledComponent: WaitingForSubmission })() diff --git a/packages/vue-icon/src/waiting-for-submission/index.ts b/packages/vue-icon/src/waiting-for-submission/index.ts deleted file mode 100644 index f05ccc302a..0000000000 --- a/packages/vue-icon/src/waiting-for-submission/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import WaitingForSubmission from '@opentiny/vue-theme/svgs/waiting-for-submission.svg' - -export default () => svg({ name: 'IconWaitingForSubmission', component: WaitingForSubmission })() diff --git a/packages/vue-icon/src/waiting-to-pick.ts b/packages/vue-icon/src/waiting-to-pick.ts new file mode 100644 index 0000000000..e0c07fd75b --- /dev/null +++ b/packages/vue-icon/src/waiting-to-pick.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import WaitingToPick from '@opentiny/vue-theme/svgs/waiting-to-pick.svg' + +export default () => svg({ name: 'IconWaitingToPick', component: WaitingToPick, filledComponent: WaitingToPick })() diff --git a/packages/vue-icon/src/waiting-to-pick/index.ts b/packages/vue-icon/src/waiting-to-pick/index.ts deleted file mode 100644 index 6fa3bff775..0000000000 --- a/packages/vue-icon/src/waiting-to-pick/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import WaitingToPick from '@opentiny/vue-theme/svgs/waiting-to-pick.svg' - -export default () => svg({ name: 'IconWaitingToPick', component: WaitingToPick })() diff --git a/packages/vue-icon/src/warn.ts b/packages/vue-icon/src/warn.ts new file mode 100644 index 0000000000..6d4282afe5 --- /dev/null +++ b/packages/vue-icon/src/warn.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Warn from '@opentiny/vue-theme/svgs/warn.svg' + +export default () => svg({ name: 'IconWarn', component: Warn, filledComponent: Warn })() diff --git a/packages/vue-icon/src/warn/index.ts b/packages/vue-icon/src/warn/index.ts deleted file mode 100644 index 76d9941269..0000000000 --- a/packages/vue-icon/src/warn/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import Warn from '@opentiny/vue-theme/svgs/warn.svg' - -export default svg({ name: 'IconWarn', component: Warn }) diff --git a/packages/vue-icon/src/warning-o.ts b/packages/vue-icon/src/warning-o.ts new file mode 100644 index 0000000000..94ac7a1524 --- /dev/null +++ b/packages/vue-icon/src/warning-o.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import WarningO from '@opentiny/vue-theme/svgs/warning-o.svg' + +export default () => svg({ name: 'IconWarningO', component: WarningO, filledComponent: WarningO })() diff --git a/packages/vue-icon/src/warning-o/index.ts b/packages/vue-icon/src/warning-o/index.ts deleted file mode 100644 index e10ead2b85..0000000000 --- a/packages/vue-icon/src/warning-o/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import WarningO from '@opentiny/vue-theme/svgs/warning-o.svg' - -export default () => svg({ name: 'IconWarningO', component: WarningO })() diff --git a/packages/vue-icon/src/warning-triangle.ts b/packages/vue-icon/src/warning-triangle.ts new file mode 100644 index 0000000000..9f7642c6f8 --- /dev/null +++ b/packages/vue-icon/src/warning-triangle.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import WarningTriangle from '@opentiny/vue-theme/svgs/warning-triangle.svg' + +export default () => + svg({ name: 'IconWarningTriangle', component: WarningTriangle, filledComponent: WarningTriangle })() diff --git a/packages/vue-icon/src/warning-triangle/index.ts b/packages/vue-icon/src/warning-triangle/index.ts deleted file mode 100644 index b5c9fab793..0000000000 --- a/packages/vue-icon/src/warning-triangle/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import WarningTriangle from '@opentiny/vue-theme/svgs/warning-triangle.svg' - -export default () => svg({ name: 'IconWarningTriangle', component: WarningTriangle })() diff --git a/packages/vue-icon/src/warning.ts b/packages/vue-icon/src/warning.ts new file mode 100644 index 0000000000..a2a1c516f9 --- /dev/null +++ b/packages/vue-icon/src/warning.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Warning from '@opentiny/vue-theme/svgs/warning.svg' + +export default () => svg({ name: 'IconWarning', component: Warning, filledComponent: Warning })() diff --git a/packages/vue-icon/src/warning/index.ts b/packages/vue-icon/src/warning/index.ts deleted file mode 100644 index a091f7bad0..0000000000 --- a/packages/vue-icon/src/warning/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Warning from '@opentiny/vue-theme/svgs/warning.svg' - -export default () => svg({ name: 'IconWarning', component: Warning })() diff --git a/packages/vue-icon/src/weaknet.ts b/packages/vue-icon/src/weaknet.ts new file mode 100644 index 0000000000..32bd535c7b --- /dev/null +++ b/packages/vue-icon/src/weaknet.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Weaknet from '@opentiny/vue-theme/svgs/weaknet.svg' + +export default () => svg({ name: 'IconWeaknet', component: Weaknet, filledComponent: Weaknet })() diff --git a/packages/vue-icon/src/weaknet/index.ts b/packages/vue-icon/src/weaknet/index.ts deleted file mode 100644 index 557dc51405..0000000000 --- a/packages/vue-icon/src/weaknet/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import Weaknet from '@opentiny/vue-theme/svgs/weaknet.svg' - -export default () => svg({ name: 'IconWeaknet', component: Weaknet })() diff --git a/packages/vue-icon/src/web-plus.ts b/packages/vue-icon/src/web-plus.ts new file mode 100644 index 0000000000..adae86e5fc --- /dev/null +++ b/packages/vue-icon/src/web-plus.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import WebPlus from '@opentiny/vue-theme/svgs/web-plus.svg' + +export default () => svg({ name: 'IconWebPlus', component: WebPlus, filledComponent: WebPlus })() diff --git a/packages/vue-icon/src/web-plus/index.ts b/packages/vue-icon/src/web-plus/index.ts deleted file mode 100644 index e8d7a68138..0000000000 --- a/packages/vue-icon/src/web-plus/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import WebPlus from '@opentiny/vue-theme/svgs/web-plus.svg' - -export default () => svg({ name: 'IconWebPlus', component: WebPlus })() diff --git a/packages/vue-icon/src/word-type.ts b/packages/vue-icon/src/word-type.ts new file mode 100644 index 0000000000..9d99ad8bc7 --- /dev/null +++ b/packages/vue-icon/src/word-type.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import WordType from '@opentiny/vue-theme/svgs/word-type.svg' + +export default () => svg({ name: 'IconWordType', component: WordType, filledComponent: WordType })() diff --git a/packages/vue-icon/src/word-type/index.ts b/packages/vue-icon/src/word-type/index.ts deleted file mode 100644 index 76dd4943ba..0000000000 --- a/packages/vue-icon/src/word-type/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import WordType from '@opentiny/vue-theme/svgs/word-type.svg' - -export default () => svg({ name: 'IconWordType', component: WordType })() diff --git a/packages/vue-icon/src/work-package.ts b/packages/vue-icon/src/work-package.ts new file mode 100644 index 0000000000..e365a97158 --- /dev/null +++ b/packages/vue-icon/src/work-package.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import WorkPackage from '@opentiny/vue-theme/svgs/work-package.svg' + +export default () => svg({ name: 'IconWorkPackage', component: WorkPackage, filledComponent: WorkPackage })() diff --git a/packages/vue-icon/src/work-package/index.ts b/packages/vue-icon/src/work-package/index.ts deleted file mode 100644 index 3c7e666e84..0000000000 --- a/packages/vue-icon/src/work-package/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import WorkPackage from '@opentiny/vue-theme/svgs/work-package.svg' - -export default () => svg({ name: 'IconWorkPackage', component: WorkPackage })() diff --git a/packages/vue-icon/src/write-production-plan.ts b/packages/vue-icon/src/write-production-plan.ts new file mode 100644 index 0000000000..3421462d5e --- /dev/null +++ b/packages/vue-icon/src/write-production-plan.ts @@ -0,0 +1,5 @@ +import { svg } from '@opentiny/vue-common' +import WriteProductionPlan from '@opentiny/vue-theme/svgs/write-production-plan.svg' + +export default () => + svg({ name: 'IconWriteProductionPlan', component: WriteProductionPlan, filledComponent: WriteProductionPlan })() diff --git a/packages/vue-icon/src/write-production-plan/index.ts b/packages/vue-icon/src/write-production-plan/index.ts deleted file mode 100644 index 48b2b703fe..0000000000 --- a/packages/vue-icon/src/write-production-plan/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import WriteProductionPlan from '@opentiny/vue-theme/svgs/write-production-plan.svg' - -export default () => svg({ name: 'IconWriteProductionPlan', component: WriteProductionPlan })() diff --git a/packages/vue-icon/src/writing.ts b/packages/vue-icon/src/writing.ts new file mode 100644 index 0000000000..ac8f2c5d87 --- /dev/null +++ b/packages/vue-icon/src/writing.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Writing from '@opentiny/vue-theme/svgs/writing.svg' + +export default () => svg({ name: 'IconWriting', component: Writing, filledComponent: Writing })() diff --git a/packages/vue-icon/src/writing/index.ts b/packages/vue-icon/src/writing/index.ts deleted file mode 100644 index 3bb4baf571..0000000000 --- a/packages/vue-icon/src/writing/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Writing from '@opentiny/vue-theme/svgs/writing.svg' - -export default () => svg({ name: 'IconWriting', component: Writing })() diff --git a/packages/vue-icon/src/xml.ts b/packages/vue-icon/src/xml.ts new file mode 100644 index 0000000000..e80caa8466 --- /dev/null +++ b/packages/vue-icon/src/xml.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Xml from '@opentiny/vue-theme/svgs/xml.svg' + +export default () => svg({ name: 'IconXml', component: Xml, filledComponent: Xml })() diff --git a/packages/vue-icon/src/xml/index.ts b/packages/vue-icon/src/xml/index.ts deleted file mode 100644 index d7bf16d42c..0000000000 --- a/packages/vue-icon/src/xml/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Xml from '@opentiny/vue-theme/svgs/xml.svg' - -export default () => svg({ name: 'IconXml', component: Xml })() diff --git a/packages/vue-icon/src/yes.ts b/packages/vue-icon/src/yes.ts new file mode 100644 index 0000000000..d8833300cc --- /dev/null +++ b/packages/vue-icon/src/yes.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import Yes from '@opentiny/vue-theme/svgs/yes.svg' + +export default () => svg({ name: 'IconYes', component: Yes, filledComponent: Yes })() diff --git a/packages/vue-icon/src/yes/index.ts b/packages/vue-icon/src/yes/index.ts deleted file mode 100644 index bd6f662933..0000000000 --- a/packages/vue-icon/src/yes/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import Yes from '@opentiny/vue-theme/svgs/yes.svg' - -export default () => svg({ name: 'IconYes', component: Yes })() diff --git a/packages/vue-icon/src/zip-type.ts b/packages/vue-icon/src/zip-type.ts new file mode 100644 index 0000000000..5dfe973d63 --- /dev/null +++ b/packages/vue-icon/src/zip-type.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ZipType from '@opentiny/vue-theme/svgs/zip-type.svg' + +export default () => svg({ name: 'IconZipType', component: ZipType, filledComponent: ZipType })() diff --git a/packages/vue-icon/src/zip-type/index.ts b/packages/vue-icon/src/zip-type/index.ts deleted file mode 100644 index 1e784c180f..0000000000 --- a/packages/vue-icon/src/zip-type/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { svg } from '@opentiny/vue-common' -import ZipType from '@opentiny/vue-theme/svgs/zip-type.svg' - -export default () => svg({ name: 'IconZipType', component: ZipType })() diff --git a/packages/vue-icon/src/zoom-in.ts b/packages/vue-icon/src/zoom-in.ts new file mode 100644 index 0000000000..5b3e11817f --- /dev/null +++ b/packages/vue-icon/src/zoom-in.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ZoomIn from '@opentiny/vue-theme/svgs/zoom-in.svg' + +export default () => svg({ name: 'IconZoomIn', component: ZoomIn, filledComponent: ZoomIn })() diff --git a/packages/vue-icon/src/zoom-in/index.ts b/packages/vue-icon/src/zoom-in/index.ts deleted file mode 100644 index e3d8962415..0000000000 --- a/packages/vue-icon/src/zoom-in/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ZoomIn from '@opentiny/vue-theme/svgs/zoom-in.svg' - -export default () => svg({ name: 'IconZoomIn', component: ZoomIn })() diff --git a/packages/vue-icon/src/zoom-out.ts b/packages/vue-icon/src/zoom-out.ts new file mode 100644 index 0000000000..fffb7c8e24 --- /dev/null +++ b/packages/vue-icon/src/zoom-out.ts @@ -0,0 +1,4 @@ +import { svg } from '@opentiny/vue-common' +import ZoomOut from '@opentiny/vue-theme/svgs/zoom-out.svg' + +export default () => svg({ name: 'IconZoomOut', component: ZoomOut, filledComponent: ZoomOut })() diff --git a/packages/vue-icon/src/zoom-out/index.ts b/packages/vue-icon/src/zoom-out/index.ts deleted file mode 100644 index 14f8848aac..0000000000 --- a/packages/vue-icon/src/zoom-out/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2022 - present TinyVue Authors. - * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. - * - * Use of this source code is governed by an MIT-style license. - * - * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, - * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR - * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. - * - */ -import { svg } from '@opentiny/vue-common' -import ZoomOut from '@opentiny/vue-theme/svgs/zoom-out.svg' - -export default () => svg({ name: 'IconZoomOut', component: ZoomOut })()