diff --git a/src/assets/icons/index.ts b/src/assets/icons/index.ts new file mode 100644 index 0000000..9216e90 --- /dev/null +++ b/src/assets/icons/index.ts @@ -0,0 +1,37 @@ +import IconCopy from '~/assets/icons/control-copy.svg?component' +import IconCut from '~/assets/icons/control-cut.svg?component' +import IconDelete from '~/assets/icons/control-delete.svg?component' +import IconNext from '~/assets/icons/control-next.svg?component' +import IconPause from '~/assets/icons/control-pause.svg?component' +import IconPlay from '~/assets/icons/control-play.svg?component' +import IconPrev from '~/assets/icons/control-prev.svg?component' +import IconRedo from '~/assets/icons/control-redo.svg?component' +import IconUndo from '~/assets/icons/control-undo.svg?component' +import IconZoomin from '~/assets/icons/control-zoomin.svg?component' +import IconZoomout from '~/assets/icons/control-zoomout.svg?component' +import IconZoomToFit from '~/assets/icons/control-zoomtofit.svg?component' +import IconExport from '~/assets/icons/icon-export.svg?component' +import IconGithub from '~/assets/icons/icon-github.svg?component' +import IconMusic from '~/assets/icons/icon-music.svg?component' +import IconText from '~/assets/icons/icon-text.svg?component' +import IconVideo from '~/assets/icons/icon-video.svg?component' + +export { + IconExport, + IconGithub, + IconMusic, + IconText, + IconVideo, + IconCopy, + IconCut, + IconDelete, + IconNext, + IconPause, + IconPlay, + IconPrev, + IconRedo, + IconUndo, + IconZoomin, + IconZoomout, + IconZoomToFit +} diff --git a/src/components/bottom-panel/BottomPanel.vue b/src/components/bottom-panel/BottomPanel.vue index 3801531..6d49671 100644 --- a/src/components/bottom-panel/BottomPanel.vue +++ b/src/components/bottom-panel/BottomPanel.vue @@ -1,18 +1,20 @@