mobilizon.chapril.org-mobil.../js/src/components/core/MaterialIcon.story.vue
Thomas Citharel ee20e03cc2
Migrate to Vue 3 and Vite
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-08-11 16:46:31 +02:00

17 lines
468 B
Vue

<template>
<Story :layout="{ type: 'grid', width: 60 }">
<Variant title="Google">
<MaterialIcon :icon="['', 'google']" />
</Variant>
<Variant title="Calendar">
<MaterialIcon :icon="['', 'calendar']" />
</Variant>
<Variant title="Account Multiple Plus">
<MaterialIcon :icon="['', 'account-multiple-plus']" />
</Variant>
</Story>
</template>
<script lang="ts" setup>
import MaterialIcon from "./MaterialIcon.vue";
</script>