Skip to content
Snippets Groups Projects
Commit 334b09e4 authored by Jan den Besten's avatar Jan den Besten
Browse files

Moved `icons.ts` to a more logical place

parent 435069c0
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ Show and test the components (we use [histoire](https://histoire.dev)):
npm run story:dev
```
Icons (svg) are all in one TypeScript object (strings) in `./src/components/elements/icons.ts`
Icons (svg) are all in one TypeScript object (strings) in `./src/assets/icons.ts`
## Development
......
File moved
......@@ -13,7 +13,7 @@
</template>
<script lang="ts">
import {icons,sizes} from './icons';
import {icons,sizes} from '../../assets/icons';
</script>
<script setup lang="ts">
......
......@@ -24,7 +24,7 @@
<script setup>
import { reactive } from 'vue'
import {icons,sizes} from '../../src/components/elements/icons';
import {icons,sizes} from '../../src/assets/icons';
import Icon from '../../src/components/elements/Icon.vue';
const iconKeys = Object.keys(icons);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment