@vention/machine-ui 3.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +12 -0
- package/.storybook/blocks/work-in-progress.tsx +12 -0
- package/.storybook/helpers/go-to-icon-gallery.tsx +23 -0
- package/.storybook/main.ts +38 -0
- package/.storybook/manager.ts +7 -0
- package/.storybook/preview-head.html +4 -0
- package/.storybook/preview.tsx +55 -0
- package/.storybook/theme.ts +25 -0
- package/CHANGELOG.md +2287 -0
- package/Dockerfile +11 -0
- package/README.md +39 -0
- package/ecs-task-definition.json +28 -0
- package/eslint.config.js +37 -0
- package/jest.config.ts +33 -0
- package/package.json +20 -0
- package/project.json +164 -0
- package/src/documentation/code-conventions.mdx +98 -0
- package/src/documentation/design-system/colors.mdx +58 -0
- package/src/documentation/design-system/how-to-choose-color.mdx +63 -0
- package/src/documentation/design-system/palette.mdx +159 -0
- package/src/documentation/design-system/spacing.mdx +61 -0
- package/src/documentation/design-system/typography.mdx +63 -0
- package/src/documentation/getting-started.mdx +154 -0
- package/src/documentation/icons.mdx +52 -0
- package/src/documentation/installation-and-usage.mdx +148 -0
- package/src/documentation/introduction.mdx +96 -0
- package/src/global-styles.css +9 -0
- package/src/index.ts +54 -0
- package/src/lib/components/shared/styles/input-styles.ts +123 -0
- package/src/lib/components/shared/types/input-types.ts +9 -0
- package/src/lib/components/vention-alert/vention-alert-controls.tsx +57 -0
- package/src/lib/components/vention-alert/vention-alert-utils.ts +27 -0
- package/src/lib/components/vention-alert/vention-alert.stories.tsx +137 -0
- package/src/lib/components/vention-alert/vention-alert.test.tsx +185 -0
- package/src/lib/components/vention-alert/vention-alert.tsx +295 -0
- package/src/lib/components/vention-badge/vention-badge.stories.tsx +60 -0
- package/src/lib/components/vention-badge/vention-badge.test.tsx +59 -0
- package/src/lib/components/vention-badge/vention-badge.tsx +197 -0
- package/src/lib/components/vention-banner/vention-banner.stories.tsx +124 -0
- package/src/lib/components/vention-banner/vention-banner.test.tsx +72 -0
- package/src/lib/components/vention-banner/vention-banner.tsx +123 -0
- package/src/lib/components/vention-button/button-utils.ts +143 -0
- package/src/lib/components/vention-button/vention-button.stories.tsx +89 -0
- package/src/lib/components/vention-button/vention-button.test.tsx +182 -0
- package/src/lib/components/vention-button/vention-button.tsx +151 -0
- package/src/lib/components/vention-button/vention-dropdown-button/vention-dropdown-button.stories.tsx +55 -0
- package/src/lib/components/vention-button/vention-dropdown-button/vention-dropdown-button.test.tsx +96 -0
- package/src/lib/components/vention-button/vention-dropdown-button/vention-dropdown-button.tsx +94 -0
- package/src/lib/components/vention-button/vention-icon-button/vention-icon-button.stories.tsx +55 -0
- package/src/lib/components/vention-button/vention-icon-button/vention-icon-button.test.tsx +227 -0
- package/src/lib/components/vention-button/vention-icon-button/vention-icon-button.tsx +60 -0
- package/src/lib/components/vention-callout/vention-callout.stories.tsx +82 -0
- package/src/lib/components/vention-callout/vention-callout.test.tsx +142 -0
- package/src/lib/components/vention-callout/vention-callout.tsx +199 -0
- package/src/lib/components/vention-checkbox/vention-checkbox-icon.tsx +64 -0
- package/src/lib/components/vention-checkbox/vention-checkbox.stories.tsx +121 -0
- package/src/lib/components/vention-checkbox/vention-checkbox.test.tsx +468 -0
- package/src/lib/components/vention-checkbox/vention-checkbox.tsx +321 -0
- package/src/lib/components/vention-combobox/vention-combobox.stories.tsx +181 -0
- package/src/lib/components/vention-combobox/vention-combobox.test.tsx +157 -0
- package/src/lib/components/vention-combobox/vention-combobox.tsx +374 -0
- package/src/lib/components/vention-counter/vention-counter.stories.tsx +19 -0
- package/src/lib/components/vention-counter/vention-counter.test.tsx +116 -0
- package/src/lib/components/vention-counter/vention-counter.tsx +165 -0
- package/src/lib/components/vention-draggable/vention-draggable.stories.tsx +47 -0
- package/src/lib/components/vention-draggable/vention-draggable.test.tsx +54 -0
- package/src/lib/components/vention-draggable/vention-draggable.tsx +120 -0
- package/src/lib/components/vention-drawer/vention-drawer.stories.tsx +80 -0
- package/src/lib/components/vention-drawer/vention-drawer.test.tsx +74 -0
- package/src/lib/components/vention-drawer/vention-drawer.tsx +105 -0
- package/src/lib/components/vention-dropzone/vention-dropzone-utils.tsx +124 -0
- package/src/lib/components/vention-dropzone/vention-dropzone.stories.tsx +69 -0
- package/src/lib/components/vention-dropzone/vention-dropzone.test.tsx +136 -0
- package/src/lib/components/vention-dropzone/vention-dropzone.tsx +234 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-analytics.tsx +18 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-communication.tsx +35 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-conveyor.tsx +32 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-input-output.tsx +10 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-linear.tsx +22 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-pneumatic.tsx +12 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-programming.tsx +24 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-robot-arm.tsx +29 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-rotary.tsx +22 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-state-machine.tsx +35 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/position-rx.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/position-ry.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/position-rz.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/position-x.tsx +12 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/position-y.tsx +12 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/position-z.tsx +12 -0
- package/src/lib/components/vention-icon/_generated/icon-types.ts +460 -0
- package/src/lib/components/vention-icon/_generated/icons/ac-motor.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/icons/access-point.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator1.tsx +21 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator10.tsx +24 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator2.tsx +23 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator3.tsx +27 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator4.tsx +37 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator5.tsx +37 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator6.tsx +17 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator7.tsx +12 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator8.tsx +28 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator9.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/adjustments-alt-filled.tsx +23 -0
- package/src/lib/components/vention-icon/_generated/icons/adjustments-alt.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/adjustments-filled.tsx +26 -0
- package/src/lib/components/vention-icon/_generated/icons/adjustments-horizontal.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/alarm-bell-filled.tsx +23 -0
- package/src/lib/components/vention-icon/_generated/icons/alarm-bell-ringing.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/alarm-bell.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/alarm.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/alert-circle-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/alert-circle.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/alert-triangle-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/alert-triangle.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/analytics.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/angle.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/apps-2.tsx +31 -0
- package/src/lib/components/vention-icon/_generated/icons/apps.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-bar-both.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-bar-down.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-bar-left.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-bar-right.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-bar-to-down.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-bar-to-left.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-bar-to-right.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-bar-to-up.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-bar-up.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-big-down.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-big-left.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-big-right-lines.tsx +22 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-big-right.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-big-up.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-left-from-arc.tsx +22 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-left.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-narrow-down.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-narrow-left.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-narrow-right.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-narrow-up.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-right.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-up-right.tsx +9 -0
- package/src/lib/components/vention-icon/_generated/icons/arrows-diagonal-minimize-1.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/arrows-diagonal.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/arrows-diff.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrows-exchange-1.tsx +9 -0
- package/src/lib/components/vention-icon/_generated/icons/arrows-exchange.tsx +9 -0
- package/src/lib/components/vention-icon/_generated/icons/arrows-maximize.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrows-minimize.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrows-move.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrows-right-left.tsx +18 -0
- package/src/lib/components/vention-icon/_generated/icons/assembly.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/asset.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/axis.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/belt-actuator-2.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/belt-actuator-3.tsx +26 -0
- package/src/lib/components/vention-icon/_generated/icons/belt-actuator.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/binary-tree-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/binary-tree.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/binary.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/blend.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/bolt-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/bolt.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/bomb.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/book-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/book.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/bookmark.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/books.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/braces.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/brand-python.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/bug.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/building-broadcast-tower.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/building-community.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/building-factory-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/building-skyscraper.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/building.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/button-black.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/button-white.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/calendar-month.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/camera.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/capture.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/caret-down-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/caret-down.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/caret-left-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/caret-left.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/caret-right-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/caret-right.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/caret-up-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/caret-up.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/category-filled.tsx +30 -0
- package/src/lib/components/vention-icon/_generated/icons/category.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/icons/cell-signal-full.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cell-signal-low.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cell-signal-off.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/chart-dots-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/check.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/checkbox.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/checks.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/chevron-down.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/chevron-left.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/chevron-right.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/chevron-up.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/chevrons-down.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/chevrons-left.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/chevrons-right.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/chevrons-up.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/circle-arrow-up.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/circle-check-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/circle-check.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/circle-minus.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/circle-plus.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/circle-square.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/circle-x-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/circle-x.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/clock.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/clockwise-1.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/clockwise-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/close.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/cloud-computing.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cloud-data-connection.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cloud-download-1.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/cloud-download-off.tsx +37 -0
- package/src/lib/components/vention-icon/_generated/icons/cloud-download.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cloud-off.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cloud-upload.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cloud.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/code.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/command-do.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/command-elif.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/command-else.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/command-if.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/condition-tree.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/confetti.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/connection.tsx +12 -0
- package/src/lib/components/vention-icon/_generated/icons/conveyor.tsx +31 -0
- package/src/lib/components/vention-icon/_generated/icons/copy.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/corner-up-left.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/corner-up-right.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/counterclockwise-1.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/counterclockwise-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cpu-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cpu.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cube-plus.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cube-send.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cube.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-gear-fill.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-help-bold-filled.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-help-bold.tsx +22 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-help-fill.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-help.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-info-1.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-info-bold-filled.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-info-bold.tsx +22 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-info.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-point-to-point.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-rocket-fat.tsx +35 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-rocket.tsx +31 -0
- package/src/lib/components/vention-icon/_generated/icons/dashboard.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/decline.tsx +9 -0
- package/src/lib/components/vention-icon/_generated/icons/device-laptop.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/device-tv.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/devices-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/dimensions.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/dots-vertical.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/dots.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/download-off.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/download.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/edit.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/electric-actuator.tsx +14 -0
- package/src/lib/components/vention-icon/_generated/icons/exclamation-mark.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/external-link.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/eye-closed.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/eye.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/file-3-d.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/file-code.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/file-description.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/file-download.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/file-type-pdf.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/file-upload.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/file-wrong.tsx +28 -0
- package/src/lib/components/vention-icon/_generated/icons/file.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/filter.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/focus.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/folder-open.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/folder-plus-1.tsx +22 -0
- package/src/lib/components/vention-icon/_generated/icons/folder.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/frame-3.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/function-icon.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/git-branch-deleted.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/git-branch.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/git-compare.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/git-fork.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/git-merge.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/gizmo.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/graph.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/grid-dots.tsx +61 -0
- package/src/lib/components/vention-icon/_generated/icons/grip-horizontal.tsx +43 -0
- package/src/lib/components/vention-icon/_generated/icons/grip-vertical.tsx +43 -0
- package/src/lib/components/vention-icon/_generated/icons/gripper-1.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/gripper-2.tsx +10 -0
- package/src/lib/components/vention-icon/_generated/icons/hand-stop.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/hash.tsx +22 -0
- package/src/lib/components/vention-icon/_generated/icons/hb-menu.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/headphones-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/headset-filled.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/headset.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/help-circle-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/help.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/history-toggle.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/history.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/hmi.tsx +26 -0
- package/src/lib/components/vention-icon/_generated/icons/home-2.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/home-solid.tsx +27 -0
- package/src/lib/components/vention-icon/_generated/icons/home.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/hourglass-empty.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/i-o.tsx +31 -0
- package/src/lib/components/vention-icon/_generated/icons/icon-box-padding.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/icon-components.tsx +18 -0
- package/src/lib/components/vention-icon/_generated/icons/icon-nut.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/icon-ruler-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/icon-square-rotated.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/incline.tsx +9 -0
- package/src/lib/components/vention-icon/_generated/icons/infinity.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/info-circle-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/info-circle.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/input-output.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/icons/io-link.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/ipad-horizontal.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/json.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/lan.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/language.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/layout-sidebar-right.tsx +14 -0
- package/src/lib/components/vention-icon/_generated/icons/legacy-axis.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/legacy-robot.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/letter-case.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/line.tsx +27 -0
- package/src/lib/components/vention-icon/_generated/icons/linear.tsx +27 -0
- package/src/lib/components/vention-icon/_generated/icons/link.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/list-check.tsx +24 -0
- package/src/lib/components/vention-icon/_generated/icons/load-balancer.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/lock.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/logout.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/machine-apps-headset.tsx +18 -0
- package/src/lib/components/vention-icon/_generated/icons/machinelogic-2.tsx +17 -0
- package/src/lib/components/vention-icon/_generated/icons/magnet.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/mail-fast.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/mail.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/mailbox.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/math-equal-greater.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/math-equal-lower.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/maximize.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/menu-2.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/menu-waffle.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/icons/menu.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/merge.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/message-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/message-chatbot.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/message-circle-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/message-circle.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/message-dots.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/message.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/messages.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/microphone.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/minus-vertical.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/minus.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/mirror-flip-horizontal.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/mirror-flip-vertical.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/module-1.tsx +28 -0
- package/src/lib/components/vention-icon/_generated/icons/module-2.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/module-3.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/icons/module-4.tsx +14 -0
- package/src/lib/components/vention-icon/_generated/icons/motor-1.tsx +14 -0
- package/src/lib/components/vention-icon/_generated/icons/motor-2.tsx +24 -0
- package/src/lib/components/vention-icon/_generated/icons/motor-3.tsx +21 -0
- package/src/lib/components/vention-icon/_generated/icons/motor-4.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/motor-5.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/move-to-ground.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/movie.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/multiplier.tsx +17 -0
- package/src/lib/components/vention-icon/_generated/icons/music.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/network-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/network-off.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/network.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/number-1.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/number-2.tsx +21 -0
- package/src/lib/components/vention-icon/_generated/icons/number-3.tsx +28 -0
- package/src/lib/components/vention-icon/_generated/icons/number-4.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/operator.tsx +23 -0
- package/src/lib/components/vention-icon/_generated/icons/pdf.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/phone-call.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/phone-off.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/phone.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/photo.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/pinned.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/player-pause.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/player-play-filled.tsx +18 -0
- package/src/lib/components/vention-icon/_generated/icons/player-play.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/player-record.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/player-skip-back.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/player-skip-forward.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/player-stop-filled.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/player-stop.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/player-track-next.tsx +9 -0
- package/src/lib/components/vention-icon/_generated/icons/player-track-prev.tsx +9 -0
- package/src/lib/components/vention-icon/_generated/icons/plug-x.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/plug.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/plus.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/pneumatic.tsx +12 -0
- package/src/lib/components/vention-icon/_generated/icons/point-to-point-3.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/point-to-point-check.tsx +23 -0
- package/src/lib/components/vention-icon/_generated/icons/power.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/programming.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/pushbutton.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/receipt-dollar.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/receipt.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/reference-frame-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/reference-frame.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/refresh-alert.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/refresh-off.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/refresh.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/reload.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/repeat.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/rewind-backward-15.tsx +28 -0
- package/src/lib/components/vention-icon/_generated/icons/rewind-forward-15.tsx +28 -0
- package/src/lib/components/vention-icon/_generated/icons/robot-arm-2.tsx +23 -0
- package/src/lib/components/vention-icon/_generated/icons/robot-arm-duotone-2.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/robot-arm.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/robot-face.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/rotary.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/route-square.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/row-insert-bottom.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/row-insert-top.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/ruler-measure-2.tsx +28 -0
- package/src/lib/components/vention-icon/_generated/icons/ruler.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/save.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/search.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/selector.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/send.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/sensor.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/sensor1.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/sensor2.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/icons/sequence.tsx +28 -0
- package/src/lib/components/vention-icon/_generated/icons/setting-automation.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/settings-2.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/settings-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/settings.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/shield-code.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/shield-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/shield-half.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/shield.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/shopping-bag.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/shopping-cart-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/shopping-cart.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/show-3d.tsx +26 -0
- package/src/lib/components/vention-icon/_generated/icons/sitemap-1.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/sitemap.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/slash.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/speedtest.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/sphere.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/square-number-0.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/square-number-1.tsx +14 -0
- package/src/lib/components/vention-icon/_generated/icons/square-number-2.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/square-number-3.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/stack.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/star.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/state-machine.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/status-danger-hmi.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/status-small.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/status-warning-hmi.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/stopwatch.tsx +23 -0
- package/src/lib/components/vention-icon/_generated/icons/subtask.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/switch-horizontal.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/switch-vertical.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/tag.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/target.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/template.tsx +29 -0
- package/src/lib/components/vention-icon/_generated/icons/terminal-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/terminal.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/text-plus-1.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/timeline.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/tiny-caret-down.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/tiny-caret-right.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/tool-1.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/tool.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/topology-bus.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/topology-complex.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/topology-full-hierarchy.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/topology-full.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/topology-ring-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/topology-ring-3.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/topology-ring.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/topology-star-3.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/trash.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/trending-up.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/icons/truck-delivery.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/truck-loading.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/un-pinned.tsx +14 -0
- package/src/lib/components/vention-icon/_generated/icons/unlink.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/update.tsx +21 -0
- package/src/lib/components/vention-icon/_generated/icons/upload.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/user-circle.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/user-off.tsx +21 -0
- package/src/lib/components/vention-icon/_generated/icons/user-plus.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/user-shield.tsx +21 -0
- package/src/lib/components/vention-icon/_generated/icons/user.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/users-plus.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/users.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/variable.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/vention.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/versions.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/video.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/web-link.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/weight-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/weight.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/wifi-low.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/wifi-lowest.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/wifi-off.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/wifi.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/world-download.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/world.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/xyz-1.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/xyz-2.tsx +16 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-analytics.svg +5 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-communication.svg +13 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-conveyor.svg +6 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-input-output.svg +5 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-linear.svg +5 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-pneumatic.svg +7 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-programming.svg +6 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-robot-arm.svg +12 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-rotary.svg +5 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-state-machine.svg +10 -0
- package/src/lib/components/vention-icon/duotone-svg/position-rx.svg +5 -0
- package/src/lib/components/vention-icon/duotone-svg/position-ry.svg +5 -0
- package/src/lib/components/vention-icon/duotone-svg/position-rz.svg +5 -0
- package/src/lib/components/vention-icon/duotone-svg/position-x.svg +4 -0
- package/src/lib/components/vention-icon/duotone-svg/position-y.svg +4 -0
- package/src/lib/components/vention-icon/duotone-svg/position-z.svg +4 -0
- package/src/lib/components/vention-icon/svg/ac-motor.svg +6 -0
- package/src/lib/components/vention-icon/svg/access-point.svg +3 -0
- package/src/lib/components/vention-icon/svg/actuator.svg +11 -0
- package/src/lib/components/vention-icon/svg/actuator1.svg +6 -0
- package/src/lib/components/vention-icon/svg/actuator10.svg +9 -0
- package/src/lib/components/vention-icon/svg/actuator2.svg +8 -0
- package/src/lib/components/vention-icon/svg/actuator3.svg +7 -0
- package/src/lib/components/vention-icon/svg/actuator4.svg +7 -0
- package/src/lib/components/vention-icon/svg/actuator5.svg +7 -0
- package/src/lib/components/vention-icon/svg/actuator6.svg +7 -0
- package/src/lib/components/vention-icon/svg/actuator7.svg +7 -0
- package/src/lib/components/vention-icon/svg/actuator8.svg +8 -0
- package/src/lib/components/vention-icon/svg/actuator9.svg +10 -0
- package/src/lib/components/vention-icon/svg/adjustments-alt-filled.svg +12 -0
- package/src/lib/components/vention-icon/svg/adjustments-alt.svg +3 -0
- package/src/lib/components/vention-icon/svg/adjustments-filled.svg +12 -0
- package/src/lib/components/vention-icon/svg/adjustments-horizontal.svg +3 -0
- package/src/lib/components/vention-icon/svg/alarm-bell-filled.svg +6 -0
- package/src/lib/components/vention-icon/svg/alarm-bell-ringing.svg +3 -0
- package/src/lib/components/vention-icon/svg/alarm-bell.svg +3 -0
- package/src/lib/components/vention-icon/svg/alarm.svg +3 -0
- package/src/lib/components/vention-icon/svg/alert-circle-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/alert-circle.svg +3 -0
- package/src/lib/components/vention-icon/svg/alert-triangle-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/alert-triangle.svg +3 -0
- package/src/lib/components/vention-icon/svg/analytics.svg +3 -0
- package/src/lib/components/vention-icon/svg/angle.svg +3 -0
- package/src/lib/components/vention-icon/svg/apps-2.svg +6 -0
- package/src/lib/components/vention-icon/svg/apps.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-bar-both.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-bar-down.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-bar-left.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-bar-right.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-bar-to-down.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-bar-to-left.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-bar-to-right.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-bar-to-up.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-bar-up.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-big-down.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-big-left.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-big-right-lines.svg +12 -0
- package/src/lib/components/vention-icon/svg/arrow-big-right.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-big-up.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-left-from-arc.svg +12 -0
- package/src/lib/components/vention-icon/svg/arrow-left.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-narrow-down.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-narrow-left.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-narrow-right.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-narrow-up.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-right.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-up-right.svg +4 -0
- package/src/lib/components/vention-icon/svg/arrows-diagonal-minimize-1.svg +6 -0
- package/src/lib/components/vention-icon/svg/arrows-diagonal.svg +6 -0
- package/src/lib/components/vention-icon/svg/arrows-diff.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrows-exchange-1.svg +4 -0
- package/src/lib/components/vention-icon/svg/arrows-exchange.svg +4 -0
- package/src/lib/components/vention-icon/svg/arrows-maximize.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrows-minimize.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrows-move.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrows-right-left.svg +13 -0
- package/src/lib/components/vention-icon/svg/assembly.svg +4 -0
- package/src/lib/components/vention-icon/svg/asset.svg +3 -0
- package/src/lib/components/vention-icon/svg/axis.svg +3 -0
- package/src/lib/components/vention-icon/svg/belt-actuator-2.svg +5 -0
- package/src/lib/components/vention-icon/svg/belt-actuator-3.svg +6 -0
- package/src/lib/components/vention-icon/svg/belt-actuator.svg +5 -0
- package/src/lib/components/vention-icon/svg/binary-tree-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/binary-tree.svg +3 -0
- package/src/lib/components/vention-icon/svg/binary.svg +3 -0
- package/src/lib/components/vention-icon/svg/blend.svg +3 -0
- package/src/lib/components/vention-icon/svg/bolt-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/bolt.svg +3 -0
- package/src/lib/components/vention-icon/svg/bomb.svg +3 -0
- package/src/lib/components/vention-icon/svg/book-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/book.svg +3 -0
- package/src/lib/components/vention-icon/svg/bookmark.svg +3 -0
- package/src/lib/components/vention-icon/svg/books.svg +3 -0
- package/src/lib/components/vention-icon/svg/braces.svg +3 -0
- package/src/lib/components/vention-icon/svg/brand-python.svg +3 -0
- package/src/lib/components/vention-icon/svg/bug.svg +3 -0
- package/src/lib/components/vention-icon/svg/building-broadcast-tower.svg +3 -0
- package/src/lib/components/vention-icon/svg/building-community.svg +3 -0
- package/src/lib/components/vention-icon/svg/building-factory-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/building-skyscraper.svg +3 -0
- package/src/lib/components/vention-icon/svg/building.svg +3 -0
- package/src/lib/components/vention-icon/svg/button-black.svg +3 -0
- package/src/lib/components/vention-icon/svg/button-white.svg +3 -0
- package/src/lib/components/vention-icon/svg/calendar-month.svg +3 -0
- package/src/lib/components/vention-icon/svg/camera.svg +4 -0
- package/src/lib/components/vention-icon/svg/capture.svg +3 -0
- package/src/lib/components/vention-icon/svg/caret-down-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/caret-down.svg +3 -0
- package/src/lib/components/vention-icon/svg/caret-left-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/caret-left.svg +3 -0
- package/src/lib/components/vention-icon/svg/caret-right-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/caret-right.svg +3 -0
- package/src/lib/components/vention-icon/svg/caret-up-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/caret-up.svg +3 -0
- package/src/lib/components/vention-icon/svg/category-filled.svg +13 -0
- package/src/lib/components/vention-icon/svg/category.svg +6 -0
- package/src/lib/components/vention-icon/svg/cell-signal-full.svg +3 -0
- package/src/lib/components/vention-icon/svg/cell-signal-low.svg +3 -0
- package/src/lib/components/vention-icon/svg/cell-signal-off.svg +3 -0
- package/src/lib/components/vention-icon/svg/chart-dots-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/check.svg +3 -0
- package/src/lib/components/vention-icon/svg/checkbox.svg +5 -0
- package/src/lib/components/vention-icon/svg/checks.svg +3 -0
- package/src/lib/components/vention-icon/svg/chevron-down.svg +3 -0
- package/src/lib/components/vention-icon/svg/chevron-left.svg +3 -0
- package/src/lib/components/vention-icon/svg/chevron-right.svg +3 -0
- package/src/lib/components/vention-icon/svg/chevron-up.svg +3 -0
- package/src/lib/components/vention-icon/svg/chevrons-down.svg +3 -0
- package/src/lib/components/vention-icon/svg/chevrons-left.svg +3 -0
- package/src/lib/components/vention-icon/svg/chevrons-right.svg +3 -0
- package/src/lib/components/vention-icon/svg/chevrons-up.svg +3 -0
- package/src/lib/components/vention-icon/svg/circle-arrow-up.svg +3 -0
- package/src/lib/components/vention-icon/svg/circle-check-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/circle-check.svg +3 -0
- package/src/lib/components/vention-icon/svg/circle-minus.svg +3 -0
- package/src/lib/components/vention-icon/svg/circle-plus.svg +3 -0
- package/src/lib/components/vention-icon/svg/circle-square.svg +4 -0
- package/src/lib/components/vention-icon/svg/circle-x-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/circle-x.svg +3 -0
- package/src/lib/components/vention-icon/svg/clock.svg +3 -0
- package/src/lib/components/vention-icon/svg/clockwise-1.svg +3 -0
- package/src/lib/components/vention-icon/svg/clockwise-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/close.svg +3 -0
- package/src/lib/components/vention-icon/svg/cloud-computing.svg +3 -0
- package/src/lib/components/vention-icon/svg/cloud-data-connection.svg +3 -0
- package/src/lib/components/vention-icon/svg/cloud-download-1.svg +5 -0
- package/src/lib/components/vention-icon/svg/cloud-download-off.svg +8 -0
- package/src/lib/components/vention-icon/svg/cloud-download.svg +3 -0
- package/src/lib/components/vention-icon/svg/cloud-off.svg +3 -0
- package/src/lib/components/vention-icon/svg/cloud-upload.svg +3 -0
- package/src/lib/components/vention-icon/svg/cloud.svg +3 -0
- package/src/lib/components/vention-icon/svg/code.svg +3 -0
- package/src/lib/components/vention-icon/svg/command-do.svg +3 -0
- package/src/lib/components/vention-icon/svg/command-elif.svg +3 -0
- package/src/lib/components/vention-icon/svg/command-else.svg +3 -0
- package/src/lib/components/vention-icon/svg/command-if.svg +3 -0
- package/src/lib/components/vention-icon/svg/condition-tree.svg +3 -0
- package/src/lib/components/vention-icon/svg/confetti.svg +3 -0
- package/src/lib/components/vention-icon/svg/connection.svg +3 -0
- package/src/lib/components/vention-icon/svg/conveyor.svg +6 -0
- package/src/lib/components/vention-icon/svg/copy.svg +3 -0
- package/src/lib/components/vention-icon/svg/corner-up-left.svg +10 -0
- package/src/lib/components/vention-icon/svg/corner-up-right.svg +10 -0
- package/src/lib/components/vention-icon/svg/counterclockwise-1.svg +3 -0
- package/src/lib/components/vention-icon/svg/counterclockwise-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/cpu-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/cpu.svg +3 -0
- package/src/lib/components/vention-icon/svg/cube-plus.svg +3 -0
- package/src/lib/components/vention-icon/svg/cube-send.svg +3 -0
- package/src/lib/components/vention-icon/svg/cube.svg +3 -0
- package/src/lib/components/vention-icon/svg/custom-gear-fill.svg +3 -0
- package/src/lib/components/vention-icon/svg/custom-help-bold-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/custom-help-bold.svg +5 -0
- package/src/lib/components/vention-icon/svg/custom-help-fill.svg +3 -0
- package/src/lib/components/vention-icon/svg/custom-help.svg +5 -0
- package/src/lib/components/vention-icon/svg/custom-info-1.svg +3 -0
- package/src/lib/components/vention-icon/svg/custom-info-bold-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/custom-info-bold.svg +5 -0
- package/src/lib/components/vention-icon/svg/custom-info.svg +5 -0
- package/src/lib/components/vention-icon/svg/custom-point-to-point.svg +5 -0
- package/src/lib/components/vention-icon/svg/custom-rocket-fat.svg +6 -0
- package/src/lib/components/vention-icon/svg/custom-rocket.svg +6 -0
- package/src/lib/components/vention-icon/svg/dashboard.svg +6 -0
- package/src/lib/components/vention-icon/svg/decline.svg +4 -0
- package/src/lib/components/vention-icon/svg/device-laptop.svg +3 -0
- package/src/lib/components/vention-icon/svg/device-tv.svg +3 -0
- package/src/lib/components/vention-icon/svg/devices-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/dimensions.svg +10 -0
- package/src/lib/components/vention-icon/svg/dots-vertical.svg +5 -0
- package/src/lib/components/vention-icon/svg/dots.svg +5 -0
- package/src/lib/components/vention-icon/svg/download-off.svg +3 -0
- package/src/lib/components/vention-icon/svg/download.svg +3 -0
- package/src/lib/components/vention-icon/svg/edit.svg +3 -0
- package/src/lib/components/vention-icon/svg/electric-actuator.svg +5 -0
- package/src/lib/components/vention-icon/svg/exclamation-mark.svg +3 -0
- package/src/lib/components/vention-icon/svg/external-link.svg +3 -0
- package/src/lib/components/vention-icon/svg/eye-closed.svg +3 -0
- package/src/lib/components/vention-icon/svg/eye.svg +4 -0
- package/src/lib/components/vention-icon/svg/file-3-d.svg +3 -0
- package/src/lib/components/vention-icon/svg/file-code.svg +3 -0
- package/src/lib/components/vention-icon/svg/file-description.svg +3 -0
- package/src/lib/components/vention-icon/svg/file-download.svg +3 -0
- package/src/lib/components/vention-icon/svg/file-type-pdf.svg +3 -0
- package/src/lib/components/vention-icon/svg/file-upload.svg +3 -0
- package/src/lib/components/vention-icon/svg/file-wrong.svg +13 -0
- package/src/lib/components/vention-icon/svg/file.svg +3 -0
- package/src/lib/components/vention-icon/svg/filter.svg +3 -0
- package/src/lib/components/vention-icon/svg/focus.svg +3 -0
- package/src/lib/components/vention-icon/svg/folder-open.svg +10 -0
- package/src/lib/components/vention-icon/svg/folder-plus-1.svg +12 -0
- package/src/lib/components/vention-icon/svg/folder.svg +3 -0
- package/src/lib/components/vention-icon/svg/frame-3.svg +3 -0
- package/src/lib/components/vention-icon/svg/function-icon.svg +3 -0
- package/src/lib/components/vention-icon/svg/git-branch-deleted.svg +3 -0
- package/src/lib/components/vention-icon/svg/git-branch.svg +3 -0
- package/src/lib/components/vention-icon/svg/git-compare.svg +3 -0
- package/src/lib/components/vention-icon/svg/git-fork.svg +3 -0
- package/src/lib/components/vention-icon/svg/git-merge.svg +3 -0
- package/src/lib/components/vention-icon/svg/gizmo.svg +3 -0
- package/src/lib/components/vention-icon/svg/graph.svg +3 -0
- package/src/lib/components/vention-icon/svg/grid-dots.svg +11 -0
- package/src/lib/components/vention-icon/svg/grip-horizontal.svg +8 -0
- package/src/lib/components/vention-icon/svg/grip-vertical.svg +8 -0
- package/src/lib/components/vention-icon/svg/gripper-1.svg +5 -0
- package/src/lib/components/vention-icon/svg/gripper-2.svg +5 -0
- package/src/lib/components/vention-icon/svg/hand-stop.svg +3 -0
- package/src/lib/components/vention-icon/svg/hash.svg +7 -0
- package/src/lib/components/vention-icon/svg/hb-menu.svg +3 -0
- package/src/lib/components/vention-icon/svg/headphones-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/headset-filled.svg +5 -0
- package/src/lib/components/vention-icon/svg/headset.svg +3 -0
- package/src/lib/components/vention-icon/svg/help-circle-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/help.svg +3 -0
- package/src/lib/components/vention-icon/svg/history-toggle.svg +3 -0
- package/src/lib/components/vention-icon/svg/history.svg +3 -0
- package/src/lib/components/vention-icon/svg/hmi.svg +6 -0
- package/src/lib/components/vention-icon/svg/home-2.svg +5 -0
- package/src/lib/components/vention-icon/svg/home-solid.svg +7 -0
- package/src/lib/components/vention-icon/svg/home.svg +3 -0
- package/src/lib/components/vention-icon/svg/hourglass-empty.svg +3 -0
- package/src/lib/components/vention-icon/svg/i-o.svg +6 -0
- package/src/lib/components/vention-icon/svg/icon-box-padding.svg +3 -0
- package/src/lib/components/vention-icon/svg/icon-components.svg +13 -0
- package/src/lib/components/vention-icon/svg/icon-nut.svg +4 -0
- package/src/lib/components/vention-icon/svg/icon-ruler-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/icon-square-rotated.svg +3 -0
- package/src/lib/components/vention-icon/svg/incline.svg +4 -0
- package/src/lib/components/vention-icon/svg/infinity.svg +3 -0
- package/src/lib/components/vention-icon/svg/info-circle-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/info-circle.svg +3 -0
- package/src/lib/components/vention-icon/svg/input-output.svg +11 -0
- package/src/lib/components/vention-icon/svg/io-link.svg +3 -0
- package/src/lib/components/vention-icon/svg/ipad-horizontal.svg +3 -0
- package/src/lib/components/vention-icon/svg/json.svg +3 -0
- package/src/lib/components/vention-icon/svg/lan.svg +3 -0
- package/src/lib/components/vention-icon/svg/language.svg +3 -0
- package/src/lib/components/vention-icon/svg/layout-sidebar-right.svg +4 -0
- package/src/lib/components/vention-icon/svg/legacy-axis.svg +4 -0
- package/src/lib/components/vention-icon/svg/legacy-robot.svg +3 -0
- package/src/lib/components/vention-icon/svg/letter-case.svg +3 -0
- package/src/lib/components/vention-icon/svg/line.svg +12 -0
- package/src/lib/components/vention-icon/svg/linear.svg +12 -0
- package/src/lib/components/vention-icon/svg/link.svg +3 -0
- package/src/lib/components/vention-icon/svg/list-check.svg +9 -0
- package/src/lib/components/vention-icon/svg/load-balancer.svg +3 -0
- package/src/lib/components/vention-icon/svg/lock.svg +3 -0
- package/src/lib/components/vention-icon/svg/logout.svg +3 -0
- package/src/lib/components/vention-icon/svg/machine-apps-headset.svg +4 -0
- package/src/lib/components/vention-icon/svg/machinelogic-2.svg +7 -0
- package/src/lib/components/vention-icon/svg/magnet.svg +5 -0
- package/src/lib/components/vention-icon/svg/mail-fast.svg +3 -0
- package/src/lib/components/vention-icon/svg/mail.svg +3 -0
- package/src/lib/components/vention-icon/svg/mailbox.svg +3 -0
- package/src/lib/components/vention-icon/svg/math-equal-greater.svg +3 -0
- package/src/lib/components/vention-icon/svg/math-equal-lower.svg +3 -0
- package/src/lib/components/vention-icon/svg/maximize.svg +3 -0
- package/src/lib/components/vention-icon/svg/menu-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/menu-waffle.svg +11 -0
- package/src/lib/components/vention-icon/svg/menu.svg +3 -0
- package/src/lib/components/vention-icon/svg/merge.svg +3 -0
- package/src/lib/components/vention-icon/svg/message-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/message-chatbot.svg +3 -0
- package/src/lib/components/vention-icon/svg/message-circle-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/message-circle.svg +3 -0
- package/src/lib/components/vention-icon/svg/message-dots.svg +3 -0
- package/src/lib/components/vention-icon/svg/message.svg +3 -0
- package/src/lib/components/vention-icon/svg/messages.svg +3 -0
- package/src/lib/components/vention-icon/svg/microphone.svg +3 -0
- package/src/lib/components/vention-icon/svg/minus-vertical.svg +3 -0
- package/src/lib/components/vention-icon/svg/minus.svg +3 -0
- package/src/lib/components/vention-icon/svg/mirror-flip-horizontal.svg +3 -0
- package/src/lib/components/vention-icon/svg/mirror-flip-vertical.svg +3 -0
- package/src/lib/components/vention-icon/svg/module-1.svg +13 -0
- package/src/lib/components/vention-icon/svg/module-2.svg +9 -0
- package/src/lib/components/vention-icon/svg/module-3.svg +6 -0
- package/src/lib/components/vention-icon/svg/module-4.svg +4 -0
- package/src/lib/components/vention-icon/svg/motor-1.svg +9 -0
- package/src/lib/components/vention-icon/svg/motor-2.svg +9 -0
- package/src/lib/components/vention-icon/svg/motor-3.svg +16 -0
- package/src/lib/components/vention-icon/svg/motor-4.svg +3 -0
- package/src/lib/components/vention-icon/svg/motor-5.svg +5 -0
- package/src/lib/components/vention-icon/svg/move-to-ground.svg +3 -0
- package/src/lib/components/vention-icon/svg/movie.svg +3 -0
- package/src/lib/components/vention-icon/svg/multiplier.svg +12 -0
- package/src/lib/components/vention-icon/svg/music.svg +3 -0
- package/src/lib/components/vention-icon/svg/network-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/network-off.svg +3 -0
- package/src/lib/components/vention-icon/svg/network.svg +3 -0
- package/src/lib/components/vention-icon/svg/number-1.svg +10 -0
- package/src/lib/components/vention-icon/svg/number-2.svg +10 -0
- package/src/lib/components/vention-icon/svg/number-3.svg +11 -0
- package/src/lib/components/vention-icon/svg/number-4.svg +10 -0
- package/src/lib/components/vention-icon/svg/operator.svg +6 -0
- package/src/lib/components/vention-icon/svg/pdf.svg +3 -0
- package/src/lib/components/vention-icon/svg/phone-call.svg +3 -0
- package/src/lib/components/vention-icon/svg/phone-off.svg +3 -0
- package/src/lib/components/vention-icon/svg/phone.svg +3 -0
- package/src/lib/components/vention-icon/svg/photo.svg +3 -0
- package/src/lib/components/vention-icon/svg/pinned.svg +3 -0
- package/src/lib/components/vention-icon/svg/player-pause.svg +4 -0
- package/src/lib/components/vention-icon/svg/player-play-filled.svg +10 -0
- package/src/lib/components/vention-icon/svg/player-play.svg +3 -0
- package/src/lib/components/vention-icon/svg/player-record.svg +3 -0
- package/src/lib/components/vention-icon/svg/player-skip-back.svg +3 -0
- package/src/lib/components/vention-icon/svg/player-skip-forward.svg +3 -0
- package/src/lib/components/vention-icon/svg/player-stop-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/player-stop.svg +3 -0
- package/src/lib/components/vention-icon/svg/player-track-next.svg +4 -0
- package/src/lib/components/vention-icon/svg/player-track-prev.svg +4 -0
- package/src/lib/components/vention-icon/svg/plug-x.svg +3 -0
- package/src/lib/components/vention-icon/svg/plug.svg +3 -0
- package/src/lib/components/vention-icon/svg/plus.svg +3 -0
- package/src/lib/components/vention-icon/svg/pneumatic.svg +7 -0
- package/src/lib/components/vention-icon/svg/point-to-point-3.svg +4 -0
- package/src/lib/components/vention-icon/svg/point-to-point-check.svg +13 -0
- package/src/lib/components/vention-icon/svg/power.svg +3 -0
- package/src/lib/components/vention-icon/svg/programming.svg +5 -0
- package/src/lib/components/vention-icon/svg/pushbutton.svg +3 -0
- package/src/lib/components/vention-icon/svg/receipt-dollar.svg +3 -0
- package/src/lib/components/vention-icon/svg/receipt.svg +4 -0
- package/src/lib/components/vention-icon/svg/reference-frame-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/reference-frame.svg +8 -0
- package/src/lib/components/vention-icon/svg/refresh-alert.svg +3 -0
- package/src/lib/components/vention-icon/svg/refresh-off.svg +3 -0
- package/src/lib/components/vention-icon/svg/refresh.svg +3 -0
- package/src/lib/components/vention-icon/svg/reload.svg +3 -0
- package/src/lib/components/vention-icon/svg/repeat.svg +3 -0
- package/src/lib/components/vention-icon/svg/rewind-backward-15.svg +13 -0
- package/src/lib/components/vention-icon/svg/rewind-forward-15.svg +13 -0
- package/src/lib/components/vention-icon/svg/robot-arm-2.svg +8 -0
- package/src/lib/components/vention-icon/svg/robot-arm-duotone-2.svg +8 -0
- package/src/lib/components/vention-icon/svg/robot-arm.svg +10 -0
- package/src/lib/components/vention-icon/svg/robot-face.svg +3 -0
- package/src/lib/components/vention-icon/svg/rotary.svg +5 -0
- package/src/lib/components/vention-icon/svg/route-square.svg +3 -0
- package/src/lib/components/vention-icon/svg/row-insert-bottom.svg +3 -0
- package/src/lib/components/vention-icon/svg/row-insert-top.svg +3 -0
- package/src/lib/components/vention-icon/svg/ruler-measure-2.svg +18 -0
- package/src/lib/components/vention-icon/svg/ruler.svg +3 -0
- package/src/lib/components/vention-icon/svg/save.svg +3 -0
- package/src/lib/components/vention-icon/svg/search.svg +3 -0
- package/src/lib/components/vention-icon/svg/selector.svg +3 -0
- package/src/lib/components/vention-icon/svg/send.svg +3 -0
- package/src/lib/components/vention-icon/svg/sensor.svg +5 -0
- package/src/lib/components/vention-icon/svg/sensor1.svg +6 -0
- package/src/lib/components/vention-icon/svg/sensor2.svg +6 -0
- package/src/lib/components/vention-icon/svg/sequence.svg +13 -0
- package/src/lib/components/vention-icon/svg/setting-automation.svg +5 -0
- package/src/lib/components/vention-icon/svg/settings-2.svg +4 -0
- package/src/lib/components/vention-icon/svg/settings-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/settings.svg +4 -0
- package/src/lib/components/vention-icon/svg/shield-code.svg +5 -0
- package/src/lib/components/vention-icon/svg/shield-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/shield-half.svg +3 -0
- package/src/lib/components/vention-icon/svg/shield.svg +3 -0
- package/src/lib/components/vention-icon/svg/shopping-bag.svg +3 -0
- package/src/lib/components/vention-icon/svg/shopping-cart-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/shopping-cart.svg +3 -0
- package/src/lib/components/vention-icon/svg/show-3d.svg +11 -0
- package/src/lib/components/vention-icon/svg/sitemap-1.svg +3 -0
- package/src/lib/components/vention-icon/svg/sitemap.svg +3 -0
- package/src/lib/components/vention-icon/svg/slash.svg +3 -0
- package/src/lib/components/vention-icon/svg/speedtest.svg +3 -0
- package/src/lib/components/vention-icon/svg/sphere.svg +3 -0
- package/src/lib/components/vention-icon/svg/square-number-0.svg +4 -0
- package/src/lib/components/vention-icon/svg/square-number-1.svg +4 -0
- package/src/lib/components/vention-icon/svg/square-number-2.svg +4 -0
- package/src/lib/components/vention-icon/svg/square-number-3.svg +4 -0
- package/src/lib/components/vention-icon/svg/stack.svg +3 -0
- package/src/lib/components/vention-icon/svg/star.svg +3 -0
- package/src/lib/components/vention-icon/svg/state-machine.svg +4 -0
- package/src/lib/components/vention-icon/svg/status-danger-hmi.svg +3 -0
- package/src/lib/components/vention-icon/svg/status-small.svg +3 -0
- package/src/lib/components/vention-icon/svg/status-warning-hmi.svg +3 -0
- package/src/lib/components/vention-icon/svg/stopwatch.svg +13 -0
- package/src/lib/components/vention-icon/svg/subtask.svg +3 -0
- package/src/lib/components/vention-icon/svg/switch-horizontal.svg +6 -0
- package/src/lib/components/vention-icon/svg/switch-vertical.svg +3 -0
- package/src/lib/components/vention-icon/svg/tag.svg +4 -0
- package/src/lib/components/vention-icon/svg/target.svg +5 -0
- package/src/lib/components/vention-icon/svg/template.svg +14 -0
- package/src/lib/components/vention-icon/svg/terminal-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/terminal.svg +3 -0
- package/src/lib/components/vention-icon/svg/text-plus-1.svg +15 -0
- package/src/lib/components/vention-icon/svg/timeline.svg +3 -0
- package/src/lib/components/vention-icon/svg/tiny-caret-down.svg +3 -0
- package/src/lib/components/vention-icon/svg/tiny-caret-right.svg +3 -0
- package/src/lib/components/vention-icon/svg/tool-1.svg +3 -0
- package/src/lib/components/vention-icon/svg/tool.svg +3 -0
- package/src/lib/components/vention-icon/svg/topology-bus.svg +3 -0
- package/src/lib/components/vention-icon/svg/topology-complex.svg +3 -0
- package/src/lib/components/vention-icon/svg/topology-full-hierarchy.svg +3 -0
- package/src/lib/components/vention-icon/svg/topology-full.svg +3 -0
- package/src/lib/components/vention-icon/svg/topology-ring-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/topology-ring-3.svg +3 -0
- package/src/lib/components/vention-icon/svg/topology-ring.svg +3 -0
- package/src/lib/components/vention-icon/svg/topology-star-3.svg +3 -0
- package/src/lib/components/vention-icon/svg/trash.svg +3 -0
- package/src/lib/components/vention-icon/svg/trending-up.svg +11 -0
- package/src/lib/components/vention-icon/svg/truck-delivery.svg +3 -0
- package/src/lib/components/vention-icon/svg/truck-loading.svg +3 -0
- package/src/lib/components/vention-icon/svg/un-pinned.svg +4 -0
- package/src/lib/components/vention-icon/svg/unlink.svg +3 -0
- package/src/lib/components/vention-icon/svg/update.svg +11 -0
- package/src/lib/components/vention-icon/svg/upload.svg +3 -0
- package/src/lib/components/vention-icon/svg/user-circle.svg +5 -0
- package/src/lib/components/vention-icon/svg/user-off.svg +6 -0
- package/src/lib/components/vention-icon/svg/user-plus.svg +3 -0
- package/src/lib/components/vention-icon/svg/user-shield.svg +6 -0
- package/src/lib/components/vention-icon/svg/user.svg +3 -0
- package/src/lib/components/vention-icon/svg/users-plus.svg +3 -0
- package/src/lib/components/vention-icon/svg/users.svg +3 -0
- package/src/lib/components/vention-icon/svg/variable.svg +3 -0
- package/src/lib/components/vention-icon/svg/vention.svg +3 -0
- package/src/lib/components/vention-icon/svg/versions.svg +3 -0
- package/src/lib/components/vention-icon/svg/video.svg +4 -0
- package/src/lib/components/vention-icon/svg/web-link.svg +3 -0
- package/src/lib/components/vention-icon/svg/weight-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/weight.svg +4 -0
- package/src/lib/components/vention-icon/svg/wifi-low.svg +3 -0
- package/src/lib/components/vention-icon/svg/wifi-lowest.svg +3 -0
- package/src/lib/components/vention-icon/svg/wifi-off.svg +3 -0
- package/src/lib/components/vention-icon/svg/wifi.svg +3 -0
- package/src/lib/components/vention-icon/svg/world-download.svg +3 -0
- package/src/lib/components/vention-icon/svg/world.svg +3 -0
- package/src/lib/components/vention-icon/svg/xyz-1.svg +5 -0
- package/src/lib/components/vention-icon/svg/xyz-2.svg +5 -0
- package/src/lib/components/vention-icon/svgo.config.js +19 -0
- package/src/lib/components/vention-icon/svgr-duotone.config.js +13 -0
- package/src/lib/components/vention-icon/svgr.config.js +11 -0
- package/src/lib/components/vention-icon/vention-icon.stories.tsx +63 -0
- package/src/lib/components/vention-icon/vention-icon.test.tsx +62 -0
- package/src/lib/components/vention-icon/vention-icon.tsx +62 -0
- package/src/lib/components/vention-link/vention-link.stories.tsx +20 -0
- package/src/lib/components/vention-link/vention-link.test.tsx +44 -0
- package/src/lib/components/vention-link/vention-link.tsx +88 -0
- package/src/lib/components/vention-menu/vention-menu-context.ts +13 -0
- package/src/lib/components/vention-menu/vention-menu-item/vention-menu-child-item.tsx +104 -0
- package/src/lib/components/vention-menu/vention-menu-item/vention-menu-divider.tsx +33 -0
- package/src/lib/components/vention-menu/vention-menu-item/vention-menu-header.tsx +30 -0
- package/src/lib/components/vention-menu/vention-menu-item/vention-menu-item.tsx +25 -0
- package/src/lib/components/vention-menu/vention-menu-item/vention-menu-parent-item.tsx +84 -0
- package/src/lib/components/vention-menu/vention-menu-list.tsx +66 -0
- package/src/lib/components/vention-menu/vention-menu-styling-helpers.ts +151 -0
- package/src/lib/components/vention-menu/vention-menu.stories.tsx +119 -0
- package/src/lib/components/vention-menu/vention-menu.test.tsx +234 -0
- package/src/lib/components/vention-menu/vention-menu.tsx +44 -0
- package/src/lib/components/vention-modal/vention-modal.stories.tsx +204 -0
- package/src/lib/components/vention-modal/vention-modal.test.tsx +181 -0
- package/src/lib/components/vention-modal/vention-modal.tsx +232 -0
- package/src/lib/components/vention-modal-banner/vention-modal-banner.test.tsx +104 -0
- package/src/lib/components/vention-modal-banner/vention-modal-banner.tsx +120 -0
- package/src/lib/components/vention-modal-banner/vention-modal.banner.stories.tsx +138 -0
- package/src/lib/components/vention-modal-base/vention-modal-base.stories.tsx +95 -0
- package/src/lib/components/vention-modal-base/vention-modal-base.test.tsx +117 -0
- package/src/lib/components/vention-modal-base/vention-modal-base.tsx +149 -0
- package/src/lib/components/vention-popover/vention-popover.stories.tsx +30 -0
- package/src/lib/components/vention-popover/vention-popover.test.tsx +148 -0
- package/src/lib/components/vention-popover/vention-popover.tsx +211 -0
- package/src/lib/components/vention-progress-bar/vention-progress-bar.stories.tsx +84 -0
- package/src/lib/components/vention-progress-bar/vention-progress-bar.test.tsx +102 -0
- package/src/lib/components/vention-progress-bar/vention-progress-bar.tsx +119 -0
- package/src/lib/components/vention-radio/radio-model.ts +77 -0
- package/src/lib/components/vention-radio/vention-radio-tile/vention-radio-tile-control.tsx +38 -0
- package/src/lib/components/vention-radio/vention-radio-tile/vention-radio-tile-label.tsx +52 -0
- package/src/lib/components/vention-radio/vention-radio-tile/vention-radio-tile.stories.tsx +67 -0
- package/src/lib/components/vention-radio/vention-radio-tile/vention-radio-tile.test.tsx +88 -0
- package/src/lib/components/vention-radio/vention-radio-tile/vention-radio-tile.tsx +159 -0
- package/src/lib/components/vention-radio/vention-radio.stories.tsx +62 -0
- package/src/lib/components/vention-radio/vention-radio.test.tsx +90 -0
- package/src/lib/components/vention-radio/vention-radio.tsx +174 -0
- package/src/lib/components/vention-select/vention-select.stories.tsx +224 -0
- package/src/lib/components/vention-select/vention-select.test.tsx +348 -0
- package/src/lib/components/vention-select/vention-select.tsx +295 -0
- package/src/lib/components/vention-sidebar-item/vention-sidebar-item.stories.tsx +27 -0
- package/src/lib/components/vention-sidebar-item/vention-sidebar-item.test.tsx +45 -0
- package/src/lib/components/vention-sidebar-item/vention-sidebar-item.tsx +82 -0
- package/src/lib/components/vention-slider/vention-slider.stories.tsx +65 -0
- package/src/lib/components/vention-slider/vention-slider.test.tsx +35 -0
- package/src/lib/components/vention-slider/vention-slider.tsx +74 -0
- package/src/lib/components/vention-spinner/vention-spinner.test.tsx +176 -0
- package/src/lib/components/vention-spinner/vention-spinner.tsx +213 -0
- package/src/lib/components/vention-spinner/vention.spinner.stories.tsx +67 -0
- package/src/lib/components/vention-status-dot/vention-status-dot.stories.tsx +24 -0
- package/src/lib/components/vention-status-dot/vention-status-dot.test.tsx +44 -0
- package/src/lib/components/vention-status-dot/vention-status-dot.tsx +52 -0
- package/src/lib/components/vention-status-indicator/vention-status-indicator.stories.tsx +49 -0
- package/src/lib/components/vention-status-indicator/vention-status-indicator.test.tsx +50 -0
- package/src/lib/components/vention-status-indicator/vention-status-indicator.tsx +205 -0
- package/src/lib/components/vention-stepper/vention-stepper.stories.tsx +141 -0
- package/src/lib/components/vention-stepper/vention-stepper.test.tsx +55 -0
- package/src/lib/components/vention-stepper/vention-stepper.tsx +127 -0
- package/src/lib/components/vention-steps/vention-steps.stories.tsx +45 -0
- package/src/lib/components/vention-steps/vention-steps.test.tsx +144 -0
- package/src/lib/components/vention-steps/vention-steps.tsx +305 -0
- package/src/lib/components/vention-switch/vention-switch.stories.tsx +48 -0
- package/src/lib/components/vention-switch/vention-switch.test.tsx +118 -0
- package/src/lib/components/vention-switch/vention-switch.tsx +189 -0
- package/src/lib/components/vention-tabs/vention-tabs.stories.tsx +28 -0
- package/src/lib/components/vention-tabs/vention-tabs.test.tsx +40 -0
- package/src/lib/components/vention-tabs/vention-tabs.tsx +61 -0
- package/src/lib/components/vention-text-input/vention-text-input.stories.tsx +203 -0
- package/src/lib/components/vention-text-input/vention-text-input.test.tsx +635 -0
- package/src/lib/components/vention-text-input/vention-text-input.tsx +205 -0
- package/src/lib/components/vention-tooltip/vention-tooltip.stories.tsx +25 -0
- package/src/lib/components/vention-tooltip/vention-tooltip.test.tsx +19 -0
- package/src/lib/components/vention-tooltip/vention-tooltip.tsx +53 -0
- package/src/lib/components/vention-tree-item/vention-collapsible-caret-button.tsx +42 -0
- package/src/lib/components/vention-tree-item/vention-tree-item.stories.tsx +618 -0
- package/src/lib/components/vention-tree-item/vention-tree-item.test.tsx +561 -0
- package/src/lib/components/vention-tree-item/vention-tree-item.tsx +401 -0
- package/src/lib/components/vention-uploadfile/vention-uploadfile-utils.tsx +115 -0
- package/src/lib/components/vention-uploadfile/vention-uploadfile.stories.tsx +69 -0
- package/src/lib/components/vention-uploadfile/vention-uploadfile.test.tsx +88 -0
- package/src/lib/components/vention-uploadfile/vention-uploadfile.tsx +122 -0
- package/src/lib/testing/utils.tsx +26 -0
- package/src/lib/theme/colors.ts +80 -0
- package/src/lib/theme/machine-ui-theme.ts +718 -0
- package/src/lib/theme/typography.ts +188 -0
- package/src/lib/utilities.ts +15 -0
- package/src/scripts/generate-icon-types.test.ts +91 -0
- package/src/scripts/generate-icon-types.ts +97 -0
- package/tsconfig.icon-generator.json +10 -0
- package/tsconfig.json +24 -0
- package/tsconfig.lib.json +23 -0
- package/tsconfig.spec.json +20 -0
- package/tsconfig.storybook.json +33 -0
- package/tsconfig.types.json +9 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import type { SVGProps } from "react"
|
|
3
|
+
const SvgPositionRy = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg viewBox="0 0 30 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
5
|
+
<rect width={30} height={24} rx={2} fill="#D1FAE5" />
|
|
6
|
+
<path
|
|
7
|
+
d="M17.8552 22.2227C17.5399 22.2227 17.248 22.1972 16.9795 22.146C16.7153 22.0992 16.5044 22.0438 16.3467 21.9799L16.8837 20.1773C17.2203 20.2753 17.5207 20.3222 17.7849 20.3179C18.0491 20.3137 18.2814 20.2306 18.4817 20.0686C18.6862 19.911 18.8588 19.6468 18.9994 19.276L19.1976 18.7455L15.6372 8.72275H18.0918L20.3545 16.1375H20.4568L22.726 8.72275H25.1869L21.2558 19.7299C21.0726 20.2497 20.8297 20.695 20.5271 21.0658C20.2246 21.4408 19.8538 21.7263 19.4149 21.9223C18.9802 22.1226 18.4604 22.2227 17.8552 22.2227Z"
|
|
8
|
+
fill="#064E3B"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
d="M4.8125 18.5409V5.45001H9.72159C10.7273 5.45001 11.571 5.62473 12.2528 5.97416C12.9389 6.32359 13.4567 6.81365 13.8061 7.44433C14.1598 8.07075 14.3366 8.80158 14.3366 9.6368C14.3366 10.4763 14.1577 11.205 13.7997 11.8229C13.446 12.4365 12.924 12.9117 12.2337 13.2483C11.5433 13.5807 10.6953 13.7469 9.68963 13.7469H6.19318V11.7781H9.37003C9.9581 11.7781 10.4396 11.6972 10.8146 11.5352C11.1896 11.369 11.4666 11.1283 11.6456 10.8129C11.8288 10.4933 11.9205 10.1013 11.9205 9.6368C11.9205 9.17231 11.8288 8.77601 11.6456 8.44788C11.4624 8.1155 11.1832 7.86407 10.8082 7.69362C10.4332 7.5189 9.94957 7.43155 9.35724 7.43155H7.18395V18.5409H4.8125ZM11.5753 12.6091L14.8161 18.5409H12.1697L8.98651 12.6091H11.5753Z"
|
|
12
|
+
fill="#064E3B"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
)
|
|
16
|
+
export default SvgPositionRy
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import type { SVGProps } from "react"
|
|
3
|
+
const SvgPositionRz = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg viewBox="0 0 30 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
5
|
+
<rect width={30} height={24} rx={2} fill="#DBEAFE" />
|
|
6
|
+
<path
|
|
7
|
+
d="M16.7085 18.5455V17.0753L21.771 10.728V10.6449H16.8747V8.72729H24.6027V10.3061L19.7831 16.5448V16.6279H24.7689V18.5455H16.7085Z"
|
|
8
|
+
fill="#1E3A8A"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
d="M5.23145 18.5455V5.45456H10.1405C11.1462 5.45456 11.99 5.62928 12.6718 5.97871C13.3579 6.32814 13.8756 6.8182 14.2251 7.44888C14.5787 8.0753 14.7556 8.80612 14.7556 9.64135C14.7556 10.4808 14.5766 11.2095 14.2187 11.8274C13.865 12.4411 13.343 12.9162 12.6526 13.2529C11.9623 13.5852 11.1143 13.7514 10.1086 13.7514H6.61213V11.7827H9.78897C10.377 11.7827 10.8586 11.7017 11.2336 11.5398C11.6086 11.3736 11.8856 11.1328 12.0645 10.8175C12.2478 10.4979 12.3394 10.1058 12.3394 9.64135C12.3394 9.17686 12.2478 8.78055 12.0645 8.45243C11.8813 8.12004 11.6022 7.86862 11.2272 7.69817C10.8522 7.52345 10.3685 7.43609 9.77619 7.43609H7.60289V18.5455H5.23145ZM11.9942 12.6137L15.235 18.5455H12.5887L9.40545 12.6137H11.9942Z"
|
|
12
|
+
fill="#1E3A8A"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
)
|
|
16
|
+
export default SvgPositionRz
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import type { SVGProps } from "react"
|
|
3
|
+
const SvgPositionX = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
5
|
+
<rect width={24} height={24} rx={2} fill="#FEE2E2" />
|
|
6
|
+
<path
|
|
7
|
+
d="M9.05975 5.45456L11.9426 10.2486H12.0448L14.9404 5.45456H17.6443L13.6109 12L17.7082 18.5455H14.9596L12.0448 13.7834H11.9426L9.02779 18.5455H6.29199L10.4276 12L6.34313 5.45456H9.05975Z"
|
|
8
|
+
fill="#7F1D1D"
|
|
9
|
+
/>
|
|
10
|
+
</svg>
|
|
11
|
+
)
|
|
12
|
+
export default SvgPositionX
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import type { SVGProps } from "react"
|
|
3
|
+
const SvgPositionY = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
5
|
+
<rect width={24} height={24} rx={2} fill="#D1FAE5" />
|
|
6
|
+
<path
|
|
7
|
+
d="M6.05518 5.45456H8.73344L11.9359 11.2458H12.0637L15.2661 5.45456H17.9444L13.1823 13.6619V18.5455H10.8172V13.6619L6.05518 5.45456Z"
|
|
8
|
+
fill="#064E3B"
|
|
9
|
+
/>
|
|
10
|
+
</svg>
|
|
11
|
+
)
|
|
12
|
+
export default SvgPositionY
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import type { SVGProps } from "react"
|
|
3
|
+
const SvgPositionZ = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
5
|
+
<rect width={24} height={24} rx={2} fill="#DBEAFE" />
|
|
6
|
+
<path
|
|
7
|
+
d="M7.17409 18.5455V17.0689L13.8857 7.44249H7.13574V5.45456H16.8261V6.93112L10.1208 16.5575H16.8644V18.5455H7.17409Z"
|
|
8
|
+
fill="#1E3A8A"
|
|
9
|
+
/>
|
|
10
|
+
</svg>
|
|
11
|
+
)
|
|
12
|
+
export default SvgPositionZ
|
|
@@ -0,0 +1,460 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This file was automatically generated and should not be edited.
|
|
3
|
+
|
|
4
|
+
import { lazy } from "react"
|
|
5
|
+
|
|
6
|
+
export const iconImports = {
|
|
7
|
+
["ac-motor"]: lazy(() => import("./icons/ac-motor")),
|
|
8
|
+
["access-point"]: lazy(() => import("./icons/access-point")),
|
|
9
|
+
["actuator"]: lazy(() => import("./icons/actuator")),
|
|
10
|
+
["actuator1"]: lazy(() => import("./icons/actuator1")),
|
|
11
|
+
["actuator10"]: lazy(() => import("./icons/actuator10")),
|
|
12
|
+
["actuator2"]: lazy(() => import("./icons/actuator2")),
|
|
13
|
+
["actuator3"]: lazy(() => import("./icons/actuator3")),
|
|
14
|
+
["actuator4"]: lazy(() => import("./icons/actuator4")),
|
|
15
|
+
["actuator5"]: lazy(() => import("./icons/actuator5")),
|
|
16
|
+
["actuator6"]: lazy(() => import("./icons/actuator6")),
|
|
17
|
+
["actuator7"]: lazy(() => import("./icons/actuator7")),
|
|
18
|
+
["actuator8"]: lazy(() => import("./icons/actuator8")),
|
|
19
|
+
["actuator9"]: lazy(() => import("./icons/actuator9")),
|
|
20
|
+
["adjustments-alt-filled"]: lazy(() => import("./icons/adjustments-alt-filled")),
|
|
21
|
+
["adjustments-alt"]: lazy(() => import("./icons/adjustments-alt")),
|
|
22
|
+
["adjustments-filled"]: lazy(() => import("./icons/adjustments-filled")),
|
|
23
|
+
["adjustments-horizontal"]: lazy(() => import("./icons/adjustments-horizontal")),
|
|
24
|
+
["alarm-bell-filled"]: lazy(() => import("./icons/alarm-bell-filled")),
|
|
25
|
+
["alarm-bell-ringing"]: lazy(() => import("./icons/alarm-bell-ringing")),
|
|
26
|
+
["alarm-bell"]: lazy(() => import("./icons/alarm-bell")),
|
|
27
|
+
["alarm"]: lazy(() => import("./icons/alarm")),
|
|
28
|
+
["alert-circle-filled"]: lazy(() => import("./icons/alert-circle-filled")),
|
|
29
|
+
["alert-circle"]: lazy(() => import("./icons/alert-circle")),
|
|
30
|
+
["alert-triangle-filled"]: lazy(() => import("./icons/alert-triangle-filled")),
|
|
31
|
+
["alert-triangle"]: lazy(() => import("./icons/alert-triangle")),
|
|
32
|
+
["analytics"]: lazy(() => import("./icons/analytics")),
|
|
33
|
+
["angle"]: lazy(() => import("./icons/angle")),
|
|
34
|
+
["apps-2"]: lazy(() => import("./icons/apps-2")),
|
|
35
|
+
["apps"]: lazy(() => import("./icons/apps")),
|
|
36
|
+
["arrow-bar-both"]: lazy(() => import("./icons/arrow-bar-both")),
|
|
37
|
+
["arrow-bar-down"]: lazy(() => import("./icons/arrow-bar-down")),
|
|
38
|
+
["arrow-bar-left"]: lazy(() => import("./icons/arrow-bar-left")),
|
|
39
|
+
["arrow-bar-right"]: lazy(() => import("./icons/arrow-bar-right")),
|
|
40
|
+
["arrow-bar-to-down"]: lazy(() => import("./icons/arrow-bar-to-down")),
|
|
41
|
+
["arrow-bar-to-left"]: lazy(() => import("./icons/arrow-bar-to-left")),
|
|
42
|
+
["arrow-bar-to-right"]: lazy(() => import("./icons/arrow-bar-to-right")),
|
|
43
|
+
["arrow-bar-to-up"]: lazy(() => import("./icons/arrow-bar-to-up")),
|
|
44
|
+
["arrow-bar-up"]: lazy(() => import("./icons/arrow-bar-up")),
|
|
45
|
+
["arrow-big-down"]: lazy(() => import("./icons/arrow-big-down")),
|
|
46
|
+
["arrow-big-left"]: lazy(() => import("./icons/arrow-big-left")),
|
|
47
|
+
["arrow-big-right-lines"]: lazy(() => import("./icons/arrow-big-right-lines")),
|
|
48
|
+
["arrow-big-right"]: lazy(() => import("./icons/arrow-big-right")),
|
|
49
|
+
["arrow-big-up"]: lazy(() => import("./icons/arrow-big-up")),
|
|
50
|
+
["arrow-left-from-arc"]: lazy(() => import("./icons/arrow-left-from-arc")),
|
|
51
|
+
["arrow-left"]: lazy(() => import("./icons/arrow-left")),
|
|
52
|
+
["arrow-narrow-down"]: lazy(() => import("./icons/arrow-narrow-down")),
|
|
53
|
+
["arrow-narrow-left"]: lazy(() => import("./icons/arrow-narrow-left")),
|
|
54
|
+
["arrow-narrow-right"]: lazy(() => import("./icons/arrow-narrow-right")),
|
|
55
|
+
["arrow-narrow-up"]: lazy(() => import("./icons/arrow-narrow-up")),
|
|
56
|
+
["arrow-right"]: lazy(() => import("./icons/arrow-right")),
|
|
57
|
+
["arrow-up-right"]: lazy(() => import("./icons/arrow-up-right")),
|
|
58
|
+
["arrows-diagonal-minimize-1"]: lazy(() => import("./icons/arrows-diagonal-minimize-1")),
|
|
59
|
+
["arrows-diagonal"]: lazy(() => import("./icons/arrows-diagonal")),
|
|
60
|
+
["arrows-diff"]: lazy(() => import("./icons/arrows-diff")),
|
|
61
|
+
["arrows-exchange-1"]: lazy(() => import("./icons/arrows-exchange-1")),
|
|
62
|
+
["arrows-exchange"]: lazy(() => import("./icons/arrows-exchange")),
|
|
63
|
+
["arrows-maximize"]: lazy(() => import("./icons/arrows-maximize")),
|
|
64
|
+
["arrows-minimize"]: lazy(() => import("./icons/arrows-minimize")),
|
|
65
|
+
["arrows-move"]: lazy(() => import("./icons/arrows-move")),
|
|
66
|
+
["arrows-right-left"]: lazy(() => import("./icons/arrows-right-left")),
|
|
67
|
+
["assembly"]: lazy(() => import("./icons/assembly")),
|
|
68
|
+
["asset"]: lazy(() => import("./icons/asset")),
|
|
69
|
+
["axis"]: lazy(() => import("./icons/axis")),
|
|
70
|
+
["belt-actuator-2"]: lazy(() => import("./icons/belt-actuator-2")),
|
|
71
|
+
["belt-actuator-3"]: lazy(() => import("./icons/belt-actuator-3")),
|
|
72
|
+
["belt-actuator"]: lazy(() => import("./icons/belt-actuator")),
|
|
73
|
+
["binary-tree-2"]: lazy(() => import("./icons/binary-tree-2")),
|
|
74
|
+
["binary-tree"]: lazy(() => import("./icons/binary-tree")),
|
|
75
|
+
["binary"]: lazy(() => import("./icons/binary")),
|
|
76
|
+
["blend"]: lazy(() => import("./icons/blend")),
|
|
77
|
+
["bolt-filled"]: lazy(() => import("./icons/bolt-filled")),
|
|
78
|
+
["bolt"]: lazy(() => import("./icons/bolt")),
|
|
79
|
+
["bomb"]: lazy(() => import("./icons/bomb")),
|
|
80
|
+
["book-2"]: lazy(() => import("./icons/book-2")),
|
|
81
|
+
["book"]: lazy(() => import("./icons/book")),
|
|
82
|
+
["bookmark"]: lazy(() => import("./icons/bookmark")),
|
|
83
|
+
["books"]: lazy(() => import("./icons/books")),
|
|
84
|
+
["braces"]: lazy(() => import("./icons/braces")),
|
|
85
|
+
["brand-python"]: lazy(() => import("./icons/brand-python")),
|
|
86
|
+
["bug"]: lazy(() => import("./icons/bug")),
|
|
87
|
+
["building-broadcast-tower"]: lazy(() => import("./icons/building-broadcast-tower")),
|
|
88
|
+
["building-community"]: lazy(() => import("./icons/building-community")),
|
|
89
|
+
["building-factory-2"]: lazy(() => import("./icons/building-factory-2")),
|
|
90
|
+
["building-skyscraper"]: lazy(() => import("./icons/building-skyscraper")),
|
|
91
|
+
["building"]: lazy(() => import("./icons/building")),
|
|
92
|
+
["button-black"]: lazy(() => import("./icons/button-black")),
|
|
93
|
+
["button-white"]: lazy(() => import("./icons/button-white")),
|
|
94
|
+
["calendar-month"]: lazy(() => import("./icons/calendar-month")),
|
|
95
|
+
["camera"]: lazy(() => import("./icons/camera")),
|
|
96
|
+
["capture"]: lazy(() => import("./icons/capture")),
|
|
97
|
+
["caret-down-filled"]: lazy(() => import("./icons/caret-down-filled")),
|
|
98
|
+
["caret-down"]: lazy(() => import("./icons/caret-down")),
|
|
99
|
+
["caret-left-filled"]: lazy(() => import("./icons/caret-left-filled")),
|
|
100
|
+
["caret-left"]: lazy(() => import("./icons/caret-left")),
|
|
101
|
+
["caret-right-filled"]: lazy(() => import("./icons/caret-right-filled")),
|
|
102
|
+
["caret-right"]: lazy(() => import("./icons/caret-right")),
|
|
103
|
+
["caret-up-filled"]: lazy(() => import("./icons/caret-up-filled")),
|
|
104
|
+
["caret-up"]: lazy(() => import("./icons/caret-up")),
|
|
105
|
+
["category-filled"]: lazy(() => import("./icons/category-filled")),
|
|
106
|
+
["category"]: lazy(() => import("./icons/category")),
|
|
107
|
+
["cell-signal-full"]: lazy(() => import("./icons/cell-signal-full")),
|
|
108
|
+
["cell-signal-low"]: lazy(() => import("./icons/cell-signal-low")),
|
|
109
|
+
["cell-signal-off"]: lazy(() => import("./icons/cell-signal-off")),
|
|
110
|
+
["chart-dots-2"]: lazy(() => import("./icons/chart-dots-2")),
|
|
111
|
+
["check"]: lazy(() => import("./icons/check")),
|
|
112
|
+
["checkbox"]: lazy(() => import("./icons/checkbox")),
|
|
113
|
+
["checks"]: lazy(() => import("./icons/checks")),
|
|
114
|
+
["chevron-down"]: lazy(() => import("./icons/chevron-down")),
|
|
115
|
+
["chevron-left"]: lazy(() => import("./icons/chevron-left")),
|
|
116
|
+
["chevron-right"]: lazy(() => import("./icons/chevron-right")),
|
|
117
|
+
["chevron-up"]: lazy(() => import("./icons/chevron-up")),
|
|
118
|
+
["chevrons-down"]: lazy(() => import("./icons/chevrons-down")),
|
|
119
|
+
["chevrons-left"]: lazy(() => import("./icons/chevrons-left")),
|
|
120
|
+
["chevrons-right"]: lazy(() => import("./icons/chevrons-right")),
|
|
121
|
+
["chevrons-up"]: lazy(() => import("./icons/chevrons-up")),
|
|
122
|
+
["circle-arrow-up"]: lazy(() => import("./icons/circle-arrow-up")),
|
|
123
|
+
["circle-check-filled"]: lazy(() => import("./icons/circle-check-filled")),
|
|
124
|
+
["circle-check"]: lazy(() => import("./icons/circle-check")),
|
|
125
|
+
["circle-minus"]: lazy(() => import("./icons/circle-minus")),
|
|
126
|
+
["circle-plus"]: lazy(() => import("./icons/circle-plus")),
|
|
127
|
+
["circle-square"]: lazy(() => import("./icons/circle-square")),
|
|
128
|
+
["circle-x-filled"]: lazy(() => import("./icons/circle-x-filled")),
|
|
129
|
+
["circle-x"]: lazy(() => import("./icons/circle-x")),
|
|
130
|
+
["clock"]: lazy(() => import("./icons/clock")),
|
|
131
|
+
["clockwise-1"]: lazy(() => import("./icons/clockwise-1")),
|
|
132
|
+
["clockwise-2"]: lazy(() => import("./icons/clockwise-2")),
|
|
133
|
+
["close"]: lazy(() => import("./icons/close")),
|
|
134
|
+
["cloud-computing"]: lazy(() => import("./icons/cloud-computing")),
|
|
135
|
+
["cloud-data-connection"]: lazy(() => import("./icons/cloud-data-connection")),
|
|
136
|
+
["cloud-download-1"]: lazy(() => import("./icons/cloud-download-1")),
|
|
137
|
+
["cloud-download-off"]: lazy(() => import("./icons/cloud-download-off")),
|
|
138
|
+
["cloud-download"]: lazy(() => import("./icons/cloud-download")),
|
|
139
|
+
["cloud-off"]: lazy(() => import("./icons/cloud-off")),
|
|
140
|
+
["cloud-upload"]: lazy(() => import("./icons/cloud-upload")),
|
|
141
|
+
["cloud"]: lazy(() => import("./icons/cloud")),
|
|
142
|
+
["code"]: lazy(() => import("./icons/code")),
|
|
143
|
+
["command-do"]: lazy(() => import("./icons/command-do")),
|
|
144
|
+
["command-elif"]: lazy(() => import("./icons/command-elif")),
|
|
145
|
+
["command-else"]: lazy(() => import("./icons/command-else")),
|
|
146
|
+
["command-if"]: lazy(() => import("./icons/command-if")),
|
|
147
|
+
["condition-tree"]: lazy(() => import("./icons/condition-tree")),
|
|
148
|
+
["confetti"]: lazy(() => import("./icons/confetti")),
|
|
149
|
+
["connection"]: lazy(() => import("./icons/connection")),
|
|
150
|
+
["conveyor"]: lazy(() => import("./icons/conveyor")),
|
|
151
|
+
["copy"]: lazy(() => import("./icons/copy")),
|
|
152
|
+
["corner-up-left"]: lazy(() => import("./icons/corner-up-left")),
|
|
153
|
+
["corner-up-right"]: lazy(() => import("./icons/corner-up-right")),
|
|
154
|
+
["counterclockwise-1"]: lazy(() => import("./icons/counterclockwise-1")),
|
|
155
|
+
["counterclockwise-2"]: lazy(() => import("./icons/counterclockwise-2")),
|
|
156
|
+
["cpu-2"]: lazy(() => import("./icons/cpu-2")),
|
|
157
|
+
["cpu"]: lazy(() => import("./icons/cpu")),
|
|
158
|
+
["cube-plus"]: lazy(() => import("./icons/cube-plus")),
|
|
159
|
+
["cube-send"]: lazy(() => import("./icons/cube-send")),
|
|
160
|
+
["cube"]: lazy(() => import("./icons/cube")),
|
|
161
|
+
["custom-gear-fill"]: lazy(() => import("./icons/custom-gear-fill")),
|
|
162
|
+
["custom-help-bold-filled"]: lazy(() => import("./icons/custom-help-bold-filled")),
|
|
163
|
+
["custom-help-bold"]: lazy(() => import("./icons/custom-help-bold")),
|
|
164
|
+
["custom-help-fill"]: lazy(() => import("./icons/custom-help-fill")),
|
|
165
|
+
["custom-help"]: lazy(() => import("./icons/custom-help")),
|
|
166
|
+
["custom-info-1"]: lazy(() => import("./icons/custom-info-1")),
|
|
167
|
+
["custom-info-bold-filled"]: lazy(() => import("./icons/custom-info-bold-filled")),
|
|
168
|
+
["custom-info-bold"]: lazy(() => import("./icons/custom-info-bold")),
|
|
169
|
+
["custom-info"]: lazy(() => import("./icons/custom-info")),
|
|
170
|
+
["custom-point-to-point"]: lazy(() => import("./icons/custom-point-to-point")),
|
|
171
|
+
["custom-rocket-fat"]: lazy(() => import("./icons/custom-rocket-fat")),
|
|
172
|
+
["custom-rocket"]: lazy(() => import("./icons/custom-rocket")),
|
|
173
|
+
["dashboard"]: lazy(() => import("./icons/dashboard")),
|
|
174
|
+
["decline"]: lazy(() => import("./icons/decline")),
|
|
175
|
+
["device-laptop"]: lazy(() => import("./icons/device-laptop")),
|
|
176
|
+
["device-tv"]: lazy(() => import("./icons/device-tv")),
|
|
177
|
+
["devices-2"]: lazy(() => import("./icons/devices-2")),
|
|
178
|
+
["dimensions"]: lazy(() => import("./icons/dimensions")),
|
|
179
|
+
["dots-vertical"]: lazy(() => import("./icons/dots-vertical")),
|
|
180
|
+
["dots"]: lazy(() => import("./icons/dots")),
|
|
181
|
+
["download-off"]: lazy(() => import("./icons/download-off")),
|
|
182
|
+
["download"]: lazy(() => import("./icons/download")),
|
|
183
|
+
["edit"]: lazy(() => import("./icons/edit")),
|
|
184
|
+
["electric-actuator"]: lazy(() => import("./icons/electric-actuator")),
|
|
185
|
+
["exclamation-mark"]: lazy(() => import("./icons/exclamation-mark")),
|
|
186
|
+
["external-link"]: lazy(() => import("./icons/external-link")),
|
|
187
|
+
["eye-closed"]: lazy(() => import("./icons/eye-closed")),
|
|
188
|
+
["eye"]: lazy(() => import("./icons/eye")),
|
|
189
|
+
["file-3-d"]: lazy(() => import("./icons/file-3-d")),
|
|
190
|
+
["file-code"]: lazy(() => import("./icons/file-code")),
|
|
191
|
+
["file-description"]: lazy(() => import("./icons/file-description")),
|
|
192
|
+
["file-download"]: lazy(() => import("./icons/file-download")),
|
|
193
|
+
["file-type-pdf"]: lazy(() => import("./icons/file-type-pdf")),
|
|
194
|
+
["file-upload"]: lazy(() => import("./icons/file-upload")),
|
|
195
|
+
["file-wrong"]: lazy(() => import("./icons/file-wrong")),
|
|
196
|
+
["file"]: lazy(() => import("./icons/file")),
|
|
197
|
+
["filter"]: lazy(() => import("./icons/filter")),
|
|
198
|
+
["focus"]: lazy(() => import("./icons/focus")),
|
|
199
|
+
["folder-open"]: lazy(() => import("./icons/folder-open")),
|
|
200
|
+
["folder-plus-1"]: lazy(() => import("./icons/folder-plus-1")),
|
|
201
|
+
["folder"]: lazy(() => import("./icons/folder")),
|
|
202
|
+
["frame-3"]: lazy(() => import("./icons/frame-3")),
|
|
203
|
+
["function-icon"]: lazy(() => import("./icons/function-icon")),
|
|
204
|
+
["git-branch-deleted"]: lazy(() => import("./icons/git-branch-deleted")),
|
|
205
|
+
["git-branch"]: lazy(() => import("./icons/git-branch")),
|
|
206
|
+
["git-compare"]: lazy(() => import("./icons/git-compare")),
|
|
207
|
+
["git-fork"]: lazy(() => import("./icons/git-fork")),
|
|
208
|
+
["git-merge"]: lazy(() => import("./icons/git-merge")),
|
|
209
|
+
["gizmo"]: lazy(() => import("./icons/gizmo")),
|
|
210
|
+
["graph"]: lazy(() => import("./icons/graph")),
|
|
211
|
+
["grid-dots"]: lazy(() => import("./icons/grid-dots")),
|
|
212
|
+
["grip-horizontal"]: lazy(() => import("./icons/grip-horizontal")),
|
|
213
|
+
["grip-vertical"]: lazy(() => import("./icons/grip-vertical")),
|
|
214
|
+
["gripper-1"]: lazy(() => import("./icons/gripper-1")),
|
|
215
|
+
["gripper-2"]: lazy(() => import("./icons/gripper-2")),
|
|
216
|
+
["hand-stop"]: lazy(() => import("./icons/hand-stop")),
|
|
217
|
+
["hash"]: lazy(() => import("./icons/hash")),
|
|
218
|
+
["hb-menu"]: lazy(() => import("./icons/hb-menu")),
|
|
219
|
+
["headphones-filled"]: lazy(() => import("./icons/headphones-filled")),
|
|
220
|
+
["headset-filled"]: lazy(() => import("./icons/headset-filled")),
|
|
221
|
+
["headset"]: lazy(() => import("./icons/headset")),
|
|
222
|
+
["help-circle-filled"]: lazy(() => import("./icons/help-circle-filled")),
|
|
223
|
+
["help"]: lazy(() => import("./icons/help")),
|
|
224
|
+
["history-toggle"]: lazy(() => import("./icons/history-toggle")),
|
|
225
|
+
["history"]: lazy(() => import("./icons/history")),
|
|
226
|
+
["hmi"]: lazy(() => import("./icons/hmi")),
|
|
227
|
+
["home-2"]: lazy(() => import("./icons/home-2")),
|
|
228
|
+
["home-solid"]: lazy(() => import("./icons/home-solid")),
|
|
229
|
+
["home"]: lazy(() => import("./icons/home")),
|
|
230
|
+
["hourglass-empty"]: lazy(() => import("./icons/hourglass-empty")),
|
|
231
|
+
["i-o"]: lazy(() => import("./icons/i-o")),
|
|
232
|
+
["icon-box-padding"]: lazy(() => import("./icons/icon-box-padding")),
|
|
233
|
+
["icon-components"]: lazy(() => import("./icons/icon-components")),
|
|
234
|
+
["icon-nut"]: lazy(() => import("./icons/icon-nut")),
|
|
235
|
+
["icon-ruler-2"]: lazy(() => import("./icons/icon-ruler-2")),
|
|
236
|
+
["icon-square-rotated"]: lazy(() => import("./icons/icon-square-rotated")),
|
|
237
|
+
["incline"]: lazy(() => import("./icons/incline")),
|
|
238
|
+
["infinity"]: lazy(() => import("./icons/infinity")),
|
|
239
|
+
["info-circle-filled"]: lazy(() => import("./icons/info-circle-filled")),
|
|
240
|
+
["info-circle"]: lazy(() => import("./icons/info-circle")),
|
|
241
|
+
["input-output"]: lazy(() => import("./icons/input-output")),
|
|
242
|
+
["io-link"]: lazy(() => import("./icons/io-link")),
|
|
243
|
+
["ipad-horizontal"]: lazy(() => import("./icons/ipad-horizontal")),
|
|
244
|
+
["json"]: lazy(() => import("./icons/json")),
|
|
245
|
+
["lan"]: lazy(() => import("./icons/lan")),
|
|
246
|
+
["language"]: lazy(() => import("./icons/language")),
|
|
247
|
+
["layout-sidebar-right"]: lazy(() => import("./icons/layout-sidebar-right")),
|
|
248
|
+
["legacy-axis"]: lazy(() => import("./icons/legacy-axis")),
|
|
249
|
+
["legacy-robot"]: lazy(() => import("./icons/legacy-robot")),
|
|
250
|
+
["letter-case"]: lazy(() => import("./icons/letter-case")),
|
|
251
|
+
["line"]: lazy(() => import("./icons/line")),
|
|
252
|
+
["linear"]: lazy(() => import("./icons/linear")),
|
|
253
|
+
["link"]: lazy(() => import("./icons/link")),
|
|
254
|
+
["list-check"]: lazy(() => import("./icons/list-check")),
|
|
255
|
+
["load-balancer"]: lazy(() => import("./icons/load-balancer")),
|
|
256
|
+
["lock"]: lazy(() => import("./icons/lock")),
|
|
257
|
+
["logout"]: lazy(() => import("./icons/logout")),
|
|
258
|
+
["machine-apps-headset"]: lazy(() => import("./icons/machine-apps-headset")),
|
|
259
|
+
["machinelogic-2"]: lazy(() => import("./icons/machinelogic-2")),
|
|
260
|
+
["magnet"]: lazy(() => import("./icons/magnet")),
|
|
261
|
+
["mail-fast"]: lazy(() => import("./icons/mail-fast")),
|
|
262
|
+
["mail"]: lazy(() => import("./icons/mail")),
|
|
263
|
+
["mailbox"]: lazy(() => import("./icons/mailbox")),
|
|
264
|
+
["math-equal-greater"]: lazy(() => import("./icons/math-equal-greater")),
|
|
265
|
+
["math-equal-lower"]: lazy(() => import("./icons/math-equal-lower")),
|
|
266
|
+
["maximize"]: lazy(() => import("./icons/maximize")),
|
|
267
|
+
["menu-2"]: lazy(() => import("./icons/menu-2")),
|
|
268
|
+
["menu-waffle"]: lazy(() => import("./icons/menu-waffle")),
|
|
269
|
+
["menu"]: lazy(() => import("./icons/menu")),
|
|
270
|
+
["merge"]: lazy(() => import("./icons/merge")),
|
|
271
|
+
["message-2"]: lazy(() => import("./icons/message-2")),
|
|
272
|
+
["message-chatbot"]: lazy(() => import("./icons/message-chatbot")),
|
|
273
|
+
["message-circle-filled"]: lazy(() => import("./icons/message-circle-filled")),
|
|
274
|
+
["message-circle"]: lazy(() => import("./icons/message-circle")),
|
|
275
|
+
["message-dots"]: lazy(() => import("./icons/message-dots")),
|
|
276
|
+
["message"]: lazy(() => import("./icons/message")),
|
|
277
|
+
["messages"]: lazy(() => import("./icons/messages")),
|
|
278
|
+
["microphone"]: lazy(() => import("./icons/microphone")),
|
|
279
|
+
["minus-vertical"]: lazy(() => import("./icons/minus-vertical")),
|
|
280
|
+
["minus"]: lazy(() => import("./icons/minus")),
|
|
281
|
+
["mirror-flip-horizontal"]: lazy(() => import("./icons/mirror-flip-horizontal")),
|
|
282
|
+
["mirror-flip-vertical"]: lazy(() => import("./icons/mirror-flip-vertical")),
|
|
283
|
+
["module-1"]: lazy(() => import("./icons/module-1")),
|
|
284
|
+
["module-2"]: lazy(() => import("./icons/module-2")),
|
|
285
|
+
["module-3"]: lazy(() => import("./icons/module-3")),
|
|
286
|
+
["module-4"]: lazy(() => import("./icons/module-4")),
|
|
287
|
+
["motor-1"]: lazy(() => import("./icons/motor-1")),
|
|
288
|
+
["motor-2"]: lazy(() => import("./icons/motor-2")),
|
|
289
|
+
["motor-3"]: lazy(() => import("./icons/motor-3")),
|
|
290
|
+
["motor-4"]: lazy(() => import("./icons/motor-4")),
|
|
291
|
+
["motor-5"]: lazy(() => import("./icons/motor-5")),
|
|
292
|
+
["move-to-ground"]: lazy(() => import("./icons/move-to-ground")),
|
|
293
|
+
["movie"]: lazy(() => import("./icons/movie")),
|
|
294
|
+
["multiplier"]: lazy(() => import("./icons/multiplier")),
|
|
295
|
+
["music"]: lazy(() => import("./icons/music")),
|
|
296
|
+
["network-2"]: lazy(() => import("./icons/network-2")),
|
|
297
|
+
["network-off"]: lazy(() => import("./icons/network-off")),
|
|
298
|
+
["network"]: lazy(() => import("./icons/network")),
|
|
299
|
+
["number-1"]: lazy(() => import("./icons/number-1")),
|
|
300
|
+
["number-2"]: lazy(() => import("./icons/number-2")),
|
|
301
|
+
["number-3"]: lazy(() => import("./icons/number-3")),
|
|
302
|
+
["number-4"]: lazy(() => import("./icons/number-4")),
|
|
303
|
+
["operator"]: lazy(() => import("./icons/operator")),
|
|
304
|
+
["pdf"]: lazy(() => import("./icons/pdf")),
|
|
305
|
+
["phone-call"]: lazy(() => import("./icons/phone-call")),
|
|
306
|
+
["phone-off"]: lazy(() => import("./icons/phone-off")),
|
|
307
|
+
["phone"]: lazy(() => import("./icons/phone")),
|
|
308
|
+
["photo"]: lazy(() => import("./icons/photo")),
|
|
309
|
+
["pinned"]: lazy(() => import("./icons/pinned")),
|
|
310
|
+
["player-pause"]: lazy(() => import("./icons/player-pause")),
|
|
311
|
+
["player-play-filled"]: lazy(() => import("./icons/player-play-filled")),
|
|
312
|
+
["player-play"]: lazy(() => import("./icons/player-play")),
|
|
313
|
+
["player-record"]: lazy(() => import("./icons/player-record")),
|
|
314
|
+
["player-skip-back"]: lazy(() => import("./icons/player-skip-back")),
|
|
315
|
+
["player-skip-forward"]: lazy(() => import("./icons/player-skip-forward")),
|
|
316
|
+
["player-stop-filled"]: lazy(() => import("./icons/player-stop-filled")),
|
|
317
|
+
["player-stop"]: lazy(() => import("./icons/player-stop")),
|
|
318
|
+
["player-track-next"]: lazy(() => import("./icons/player-track-next")),
|
|
319
|
+
["player-track-prev"]: lazy(() => import("./icons/player-track-prev")),
|
|
320
|
+
["plug-x"]: lazy(() => import("./icons/plug-x")),
|
|
321
|
+
["plug"]: lazy(() => import("./icons/plug")),
|
|
322
|
+
["plus"]: lazy(() => import("./icons/plus")),
|
|
323
|
+
["pneumatic"]: lazy(() => import("./icons/pneumatic")),
|
|
324
|
+
["point-to-point-3"]: lazy(() => import("./icons/point-to-point-3")),
|
|
325
|
+
["point-to-point-check"]: lazy(() => import("./icons/point-to-point-check")),
|
|
326
|
+
["power"]: lazy(() => import("./icons/power")),
|
|
327
|
+
["programming"]: lazy(() => import("./icons/programming")),
|
|
328
|
+
["pushbutton"]: lazy(() => import("./icons/pushbutton")),
|
|
329
|
+
["receipt-dollar"]: lazy(() => import("./icons/receipt-dollar")),
|
|
330
|
+
["receipt"]: lazy(() => import("./icons/receipt")),
|
|
331
|
+
["reference-frame-2"]: lazy(() => import("./icons/reference-frame-2")),
|
|
332
|
+
["reference-frame"]: lazy(() => import("./icons/reference-frame")),
|
|
333
|
+
["refresh-alert"]: lazy(() => import("./icons/refresh-alert")),
|
|
334
|
+
["refresh-off"]: lazy(() => import("./icons/refresh-off")),
|
|
335
|
+
["refresh"]: lazy(() => import("./icons/refresh")),
|
|
336
|
+
["reload"]: lazy(() => import("./icons/reload")),
|
|
337
|
+
["repeat"]: lazy(() => import("./icons/repeat")),
|
|
338
|
+
["rewind-backward-15"]: lazy(() => import("./icons/rewind-backward-15")),
|
|
339
|
+
["rewind-forward-15"]: lazy(() => import("./icons/rewind-forward-15")),
|
|
340
|
+
["robot-arm-2"]: lazy(() => import("./icons/robot-arm-2")),
|
|
341
|
+
["robot-arm-duotone-2"]: lazy(() => import("./icons/robot-arm-duotone-2")),
|
|
342
|
+
["robot-arm"]: lazy(() => import("./icons/robot-arm")),
|
|
343
|
+
["robot-face"]: lazy(() => import("./icons/robot-face")),
|
|
344
|
+
["rotary"]: lazy(() => import("./icons/rotary")),
|
|
345
|
+
["route-square"]: lazy(() => import("./icons/route-square")),
|
|
346
|
+
["row-insert-bottom"]: lazy(() => import("./icons/row-insert-bottom")),
|
|
347
|
+
["row-insert-top"]: lazy(() => import("./icons/row-insert-top")),
|
|
348
|
+
["ruler-measure-2"]: lazy(() => import("./icons/ruler-measure-2")),
|
|
349
|
+
["ruler"]: lazy(() => import("./icons/ruler")),
|
|
350
|
+
["save"]: lazy(() => import("./icons/save")),
|
|
351
|
+
["search"]: lazy(() => import("./icons/search")),
|
|
352
|
+
["selector"]: lazy(() => import("./icons/selector")),
|
|
353
|
+
["send"]: lazy(() => import("./icons/send")),
|
|
354
|
+
["sensor"]: lazy(() => import("./icons/sensor")),
|
|
355
|
+
["sensor1"]: lazy(() => import("./icons/sensor1")),
|
|
356
|
+
["sensor2"]: lazy(() => import("./icons/sensor2")),
|
|
357
|
+
["sequence"]: lazy(() => import("./icons/sequence")),
|
|
358
|
+
["setting-automation"]: lazy(() => import("./icons/setting-automation")),
|
|
359
|
+
["settings-2"]: lazy(() => import("./icons/settings-2")),
|
|
360
|
+
["settings-filled"]: lazy(() => import("./icons/settings-filled")),
|
|
361
|
+
["settings"]: lazy(() => import("./icons/settings")),
|
|
362
|
+
["shield-code"]: lazy(() => import("./icons/shield-code")),
|
|
363
|
+
["shield-filled"]: lazy(() => import("./icons/shield-filled")),
|
|
364
|
+
["shield-half"]: lazy(() => import("./icons/shield-half")),
|
|
365
|
+
["shield"]: lazy(() => import("./icons/shield")),
|
|
366
|
+
["shopping-bag"]: lazy(() => import("./icons/shopping-bag")),
|
|
367
|
+
["shopping-cart-filled"]: lazy(() => import("./icons/shopping-cart-filled")),
|
|
368
|
+
["shopping-cart"]: lazy(() => import("./icons/shopping-cart")),
|
|
369
|
+
["show-3d"]: lazy(() => import("./icons/show-3d")),
|
|
370
|
+
["sitemap-1"]: lazy(() => import("./icons/sitemap-1")),
|
|
371
|
+
["sitemap"]: lazy(() => import("./icons/sitemap")),
|
|
372
|
+
["slash"]: lazy(() => import("./icons/slash")),
|
|
373
|
+
["speedtest"]: lazy(() => import("./icons/speedtest")),
|
|
374
|
+
["sphere"]: lazy(() => import("./icons/sphere")),
|
|
375
|
+
["square-number-0"]: lazy(() => import("./icons/square-number-0")),
|
|
376
|
+
["square-number-1"]: lazy(() => import("./icons/square-number-1")),
|
|
377
|
+
["square-number-2"]: lazy(() => import("./icons/square-number-2")),
|
|
378
|
+
["square-number-3"]: lazy(() => import("./icons/square-number-3")),
|
|
379
|
+
["stack"]: lazy(() => import("./icons/stack")),
|
|
380
|
+
["star"]: lazy(() => import("./icons/star")),
|
|
381
|
+
["state-machine"]: lazy(() => import("./icons/state-machine")),
|
|
382
|
+
["status-danger-hmi"]: lazy(() => import("./icons/status-danger-hmi")),
|
|
383
|
+
["status-small"]: lazy(() => import("./icons/status-small")),
|
|
384
|
+
["status-warning-hmi"]: lazy(() => import("./icons/status-warning-hmi")),
|
|
385
|
+
["stopwatch"]: lazy(() => import("./icons/stopwatch")),
|
|
386
|
+
["subtask"]: lazy(() => import("./icons/subtask")),
|
|
387
|
+
["switch-horizontal"]: lazy(() => import("./icons/switch-horizontal")),
|
|
388
|
+
["switch-vertical"]: lazy(() => import("./icons/switch-vertical")),
|
|
389
|
+
["tag"]: lazy(() => import("./icons/tag")),
|
|
390
|
+
["target"]: lazy(() => import("./icons/target")),
|
|
391
|
+
["template"]: lazy(() => import("./icons/template")),
|
|
392
|
+
["terminal-2"]: lazy(() => import("./icons/terminal-2")),
|
|
393
|
+
["terminal"]: lazy(() => import("./icons/terminal")),
|
|
394
|
+
["text-plus-1"]: lazy(() => import("./icons/text-plus-1")),
|
|
395
|
+
["timeline"]: lazy(() => import("./icons/timeline")),
|
|
396
|
+
["tiny-caret-down"]: lazy(() => import("./icons/tiny-caret-down")),
|
|
397
|
+
["tiny-caret-right"]: lazy(() => import("./icons/tiny-caret-right")),
|
|
398
|
+
["tool-1"]: lazy(() => import("./icons/tool-1")),
|
|
399
|
+
["tool"]: lazy(() => import("./icons/tool")),
|
|
400
|
+
["topology-bus"]: lazy(() => import("./icons/topology-bus")),
|
|
401
|
+
["topology-complex"]: lazy(() => import("./icons/topology-complex")),
|
|
402
|
+
["topology-full-hierarchy"]: lazy(() => import("./icons/topology-full-hierarchy")),
|
|
403
|
+
["topology-full"]: lazy(() => import("./icons/topology-full")),
|
|
404
|
+
["topology-ring-2"]: lazy(() => import("./icons/topology-ring-2")),
|
|
405
|
+
["topology-ring-3"]: lazy(() => import("./icons/topology-ring-3")),
|
|
406
|
+
["topology-ring"]: lazy(() => import("./icons/topology-ring")),
|
|
407
|
+
["topology-star-3"]: lazy(() => import("./icons/topology-star-3")),
|
|
408
|
+
["trash"]: lazy(() => import("./icons/trash")),
|
|
409
|
+
["trending-up"]: lazy(() => import("./icons/trending-up")),
|
|
410
|
+
["truck-delivery"]: lazy(() => import("./icons/truck-delivery")),
|
|
411
|
+
["truck-loading"]: lazy(() => import("./icons/truck-loading")),
|
|
412
|
+
["un-pinned"]: lazy(() => import("./icons/un-pinned")),
|
|
413
|
+
["unlink"]: lazy(() => import("./icons/unlink")),
|
|
414
|
+
["update"]: lazy(() => import("./icons/update")),
|
|
415
|
+
["upload"]: lazy(() => import("./icons/upload")),
|
|
416
|
+
["user-circle"]: lazy(() => import("./icons/user-circle")),
|
|
417
|
+
["user-off"]: lazy(() => import("./icons/user-off")),
|
|
418
|
+
["user-plus"]: lazy(() => import("./icons/user-plus")),
|
|
419
|
+
["user-shield"]: lazy(() => import("./icons/user-shield")),
|
|
420
|
+
["user"]: lazy(() => import("./icons/user")),
|
|
421
|
+
["users-plus"]: lazy(() => import("./icons/users-plus")),
|
|
422
|
+
["users"]: lazy(() => import("./icons/users")),
|
|
423
|
+
["variable"]: lazy(() => import("./icons/variable")),
|
|
424
|
+
["vention"]: lazy(() => import("./icons/vention")),
|
|
425
|
+
["versions"]: lazy(() => import("./icons/versions")),
|
|
426
|
+
["video"]: lazy(() => import("./icons/video")),
|
|
427
|
+
["web-link"]: lazy(() => import("./icons/web-link")),
|
|
428
|
+
["weight-2"]: lazy(() => import("./icons/weight-2")),
|
|
429
|
+
["weight"]: lazy(() => import("./icons/weight")),
|
|
430
|
+
["wifi-low"]: lazy(() => import("./icons/wifi-low")),
|
|
431
|
+
["wifi-lowest"]: lazy(() => import("./icons/wifi-lowest")),
|
|
432
|
+
["wifi-off"]: lazy(() => import("./icons/wifi-off")),
|
|
433
|
+
["wifi"]: lazy(() => import("./icons/wifi")),
|
|
434
|
+
["world-download"]: lazy(() => import("./icons/world-download")),
|
|
435
|
+
["world"]: lazy(() => import("./icons/world")),
|
|
436
|
+
["xyz-1"]: lazy(() => import("./icons/xyz-1")),
|
|
437
|
+
["xyz-2"]: lazy(() => import("./icons/xyz-2")),
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
export const duotoneIconImports = {
|
|
441
|
+
["duotone-analytics"]: lazy(() => import("./duotone-icons/duotone-analytics")),
|
|
442
|
+
["duotone-communication"]: lazy(() => import("./duotone-icons/duotone-communication")),
|
|
443
|
+
["duotone-conveyor"]: lazy(() => import("./duotone-icons/duotone-conveyor")),
|
|
444
|
+
["duotone-input-output"]: lazy(() => import("./duotone-icons/duotone-input-output")),
|
|
445
|
+
["duotone-linear"]: lazy(() => import("./duotone-icons/duotone-linear")),
|
|
446
|
+
["duotone-pneumatic"]: lazy(() => import("./duotone-icons/duotone-pneumatic")),
|
|
447
|
+
["duotone-programming"]: lazy(() => import("./duotone-icons/duotone-programming")),
|
|
448
|
+
["duotone-robot-arm"]: lazy(() => import("./duotone-icons/duotone-robot-arm")),
|
|
449
|
+
["duotone-rotary"]: lazy(() => import("./duotone-icons/duotone-rotary")),
|
|
450
|
+
["duotone-state-machine"]: lazy(() => import("./duotone-icons/duotone-state-machine")),
|
|
451
|
+
["position-rx"]: lazy(() => import("./duotone-icons/position-rx")),
|
|
452
|
+
["position-ry"]: lazy(() => import("./duotone-icons/position-ry")),
|
|
453
|
+
["position-rz"]: lazy(() => import("./duotone-icons/position-rz")),
|
|
454
|
+
["position-x"]: lazy(() => import("./duotone-icons/position-x")),
|
|
455
|
+
["position-y"]: lazy(() => import("./duotone-icons/position-y")),
|
|
456
|
+
["position-z"]: lazy(() => import("./duotone-icons/position-z")),
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
export type IconType = keyof typeof iconImports
|
|
460
|
+
export type DuotoneIconType = keyof typeof duotoneIconImports
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import type { SVGProps } from "react"
|
|
3
|
+
const SvgAcMotor = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
d="M10.5 7H21V17H10.5C9.675 17 9 16.25 9 15.3333V8.66667C9 7.75 9.675 7 10.5 7Z"
|
|
7
|
+
stroke="currentColor"
|
|
8
|
+
strokeLinecap="round"
|
|
9
|
+
strokeLinejoin="round"
|
|
10
|
+
/>
|
|
11
|
+
<path d="M9 10.5H3V13.5H9V10.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" />
|
|
12
|
+
<path d="M14.9996 9.60001L13.3496 12H14.9996V9.60001Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" />
|
|
13
|
+
<path d="M15 14.4V12H16.65L15 14.4Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" />
|
|
14
|
+
</svg>
|
|
15
|
+
)
|
|
16
|
+
export default SvgAcMotor
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import type { SVGProps } from "react"
|
|
3
|
+
const SvgAccessPoint = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
d="M12 12V12.01M14.8281 9.17203C15.578 9.92214 15.9993 10.9394 15.9993 12C15.9993 13.0607 15.578 14.0779 14.8281 14.828M17.6572 6.34302C18.4001 7.08589 18.9895 7.96782 19.3915 8.93846C19.7936 9.90909 20.0005 10.9494 20.0005 12C20.0005 13.0506 19.7936 14.0909 19.3915 15.0616C18.9895 16.0322 18.4001 16.9141 17.6572 17.657M9.16822 14.828C8.41833 14.0779 7.99707 13.0607 7.99707 12C7.99707 10.9394 8.41833 9.92214 9.16822 9.17203M6.33694 17.657C5.59403 16.9141 5.00472 16.0322 4.60266 15.0616C4.20059 14.0909 3.99365 13.0506 3.99365 12C3.99365 10.9494 4.20059 9.90909 4.60266 8.93846C5.00472 7.96782 5.59403 7.08589 6.33694 6.34302"
|
|
7
|
+
stroke="currentColor"
|
|
8
|
+
strokeLinecap="round"
|
|
9
|
+
strokeLinejoin="round"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
)
|
|
13
|
+
export default SvgAccessPoint
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import type { SVGProps } from "react"
|
|
3
|
+
const SvgActuator = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
d="M13.0045 4.99965L5.00009 13.0041C3.34426 14.6599 3.34426 17.3445 5.00009 19.0004L5.00716 19.0074C6.66298 20.6633 9.3476 20.6633 11.0034 19.0074L19.0079 11.003C20.6637 9.34716 20.6637 6.66254 19.0079 5.00672L19.0008 4.99965C17.345 3.34382 14.6604 3.34382 13.0045 4.99965Z"
|
|
7
|
+
fill="currentColor"
|
|
8
|
+
/>
|
|
9
|
+
<path d="M6 16C6 14.9 6.9 14 8 14C9.1 14 10 14.9 10 16C10 17.1 9.1 18 8 18C6.9 18 6 17.1 6 16Z" fill="currentColor" />
|
|
10
|
+
<path d="M14 8C14 6.9 14.9 6 16 6C17.1 6 18 6.9 18 8C18 9.1 17.1 10 16 10C14.9 10 14 9.1 14 8Z" fill="currentColor" />
|
|
11
|
+
<defs>
|
|
12
|
+
<linearGradient id="paint0_linear_9071_15536" x1={4.8021} y1={13.2021} x2={10.8054} y2={19.2054} gradientUnits="userSpaceOnUse">
|
|
13
|
+
<stop stopColor="currentColor" />
|
|
14
|
+
<stop offset={1} stopColor="currentColor" />
|
|
15
|
+
</linearGradient>
|
|
16
|
+
</defs>
|
|
17
|
+
</svg>
|
|
18
|
+
)
|
|
19
|
+
export default SvgActuator
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import type { SVGProps } from "react"
|
|
3
|
+
const SvgActuator1 = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
d="M5 5C5 6.1 5.9 7 7 7C8.1 7 9 6.1 9 5C9 3.9 8.1 3 7 3C5.9 3 5 3.9 5 5Z"
|
|
7
|
+
stroke="currentColor"
|
|
8
|
+
strokeLinecap="round"
|
|
9
|
+
strokeLinejoin="round"
|
|
10
|
+
/>
|
|
11
|
+
<path
|
|
12
|
+
d="M16 19C16 20.1 16.9 21 18 21C19.1 21 20 20.1 20 19C20 17.9 19.1 17 18 17C16.9 17 16 17.9 16 19Z"
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
strokeLinecap="round"
|
|
15
|
+
strokeLinejoin="round"
|
|
16
|
+
/>
|
|
17
|
+
<path d="M7 7V13C7 14.1 7.9 15 9 15H18" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" />
|
|
18
|
+
<path d="M18 17V11C18 9.9 17.1 9 16 9H7" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" />
|
|
19
|
+
</svg>
|
|
20
|
+
)
|
|
21
|
+
export default SvgActuator1
|