Skip to content
On this page

ZvCountryFlag

ZvCountryFlag is a standalone component

INFO

Before you have to import the global css files in your project, follow instructions in Getting Started

Basic usage

vue
<template>
  <div class="flex flex-center gap-4">
    <ZvCountryFlag country="FR" size="small" />
    <ZvCountryFlag country="FR" size="medium" />
    <ZvCountryFlag country="FR" size="large" />

    <ZvCountryFlag country="BE" size="small" />
    <ZvCountryFlag country="BE" size="medium" />
    <ZvCountryFlag country="BE" size="large" />
  </div>
</template>

<script lang="ts" setup>
  import ZvCountryFlag from '@zadigetvoltaire/ui/components/ZvCountryFlag'
</script>