mirror of
https://github.com/enso-org/enso.git
synced 2024-11-27 06:32:30 +03:00
f2651d58e4
- Closes #7916 # Important Notes None
32 lines
593 B
Vue
32 lines
593 B
Vue
<script setup lang="ts">
|
|
import SvgIcon from '@/components/SvgIcon.vue'
|
|
|
|
import iconList from '@/util/iconList.json'
|
|
import type { Icon } from '@/util/iconName'
|
|
|
|
const iconListAsIcons = iconList as Icon[]
|
|
</script>
|
|
|
|
<template>
|
|
<Story
|
|
title="All SVG Icons"
|
|
group="misc"
|
|
:layout="{ type: 'grid', width: 100 }"
|
|
autoPropsDisabled
|
|
>
|
|
<Variant v-for="icon in iconListAsIcons" :key="icon" :title="icon">
|
|
<SvgIcon :name="icon" />
|
|
</Variant>
|
|
</Story>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.toggle-icon {
|
|
opacity: 30%;
|
|
}
|
|
|
|
.toggle-icon.toggledOn {
|
|
opacity: unset;
|
|
}
|
|
</style>
|