mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 08:03:34 +09:00
1.7 KiB
1.7 KiB
VSnack white
Vuero provides a <VSnack /> component than can be used to show
a pill with an image. Use the image prop to insert an image
inside the component. You cna also use the white prop to make
the component background white.
<template>
<VSnack
title="Support"
white
image="https://media.cssninja.io/content/photos/misc/buoy.jpg"
>
<VIcon icon="lucide:x" />
</VSnack>
<VSnack
title="Metamovies"
white
image="/images/icons/logos/metamovies.svg"
>
<VIcon icon="lucide:x" />
</VSnack>
<VSnack
title="Corporate"
white
image="https://media.cssninja.io/content/avatars/7.jpg"
>
<VIcon icon="lucide:x" />
</VSnack>
<VSnack
title="English"
white
image="/images/icons/flags/united-states-of-america.svg"
>
<VIcon icon="lucide:x" />
</VSnack>
<VSnack
title="Slicer"
white
image="/images/icons/logos/slicer.svg"
>
<VIcon icon="lucide:x" />
</VSnack>
</template>