* feat: typography * feat: typography * feat: typography * Update docs/components/heading.md * Update src/components/Typography/A.vue * Update src/components/Typography/Heading.vue * Update src/components/Typography/Img.vue * Update src/components/Typography/P.vue --------- Co-authored-by: Ilya Artamonov <ilya.sosidka@gmail.com>
14 lines
371 B
Vue
14 lines
371 B
Vue
<template>
|
|
<Img
|
|
size="max-w-lg"
|
|
alt="My gallery"
|
|
alignment="mx-auto"
|
|
img-class="rounded-lg transition-all duration-300 cursor-pointer filter grayscale hover:grayscale-0"
|
|
src="https://flowbite-svelte.com/images/examples/content-gallery-3.png"
|
|
/>
|
|
</template>
|
|
|
|
<script setup>
|
|
import Img from '../../../../src/components/Typography/Img.vue'
|
|
</script>
|