Logos
A typed logo component with size variants and a brand logo set.
Installation
npx shadcn-vue@latest add https://vuedocs.canceydejean.dev/r/logos.jsonUsage
Use Logo with a typed logo key and optional size. Browse the set with LogoGallery, or import
individual SVGs from LogoSet.
<script setup lang="ts">
import { Logo } from "@ui/Logos";
</script>
<template>
<Logo logo="three-portals" size="md" />
<Logo logo="vue" size="lg" />
</template>