1 App component that consumes an icon from the '@ms2d/icons' library
 2 ------------------------------------------------------------------
 3 
 4 <template>
 5   <img :src="Atom" />
 6 </template>
 7 
 8 <script setup>
 9   import { Atom } from '@ms2d/icons'
10 </script>
11 
12 
13 
14 @ms2d/icons (index.js)
15 ----------------------
16 
17 import Atom from './svg/atom.svg'
18 import ChevronDown from './svg/chevron-down.svg'
19 import Dots from './svg/dots.svg'
20 import Eyescan from './svg/eyescan.svg'
21 
22 export {
23   Atom,
24   ChevronDown,
25   Dots,
26   Eyescan
27 }