{"version":3,"file":"sz-CqySJ-RB.cjs","names":[],"sources":["../src/components/flags/sz.vue","../src/components/flags/sz.vue"],"sourcesContent":["<template>\r\n  <svg\r\n    xmlns=\"http://www.w3.org/2000/svg\"\r\n    class=\"svg-circle-flags\"\r\n    :viewBox=\"`${viewBoxOrigin} ${viewBoxOrigin} ${svgSize} ${svgSize}`\"\r\n  >\r\n    <mask id=\"d104ca52-b829-4a6a-be94-18103f1fd858\">\r\n      <circle cx=\"256\" cy=\"256\" r=\"256\" fill=\"#fff\" />\r\n    </mask>\r\n    <g mask=\"url(#d104ca52-b829-4a6a-be94-18103f1fd858)\">\r\n      <title v-if=\"props.flagName\">{{ props.flagName }}</title>\r\n      <path\r\n        fill=\"#ffda44\"\r\n        d=\"m0 144.7 256-20.5 256 20.5V178l-37.4 79 37.4 77v33.3l-256 24.1L0 367.3V334l37.7-77.3L0 178z\"\r\n      />\r\n      <path fill=\"#333\" d=\"M0 0h512v144.7H0z\" />\r\n      <path fill=\"#0052b4\" d=\"M0 367.3h512V512H0z\" />\r\n      <path fill=\"#a2001d\" d=\"M0 178h512v156H0z\" />\r\n      <path\r\n        fill=\"#ffda44\"\r\n        d=\"M89.2 244.9h334V267h-334zm44.6-44.6h244.8v22.3H133.8z\"\r\n      />\r\n      <path\r\n        fill=\"#eee\"\r\n        d=\"m256.2 189.2-18 65.2 18 68.4c66.8 0 124-66.8 124-66.8s-57.2-66.8-124-66.8z\"\r\n      />\r\n      <path\r\n        fill=\"#333\"\r\n        d=\"M256.2 322.8c-66.8 0-124-66.8-124-66.8s57.2-66.8 124-66.8\"\r\n      />\r\n      <path fill=\"#eee\" d=\"M211.7 233.7h22.2v44.6h-22.2z\" />\r\n      <path fill=\"#333\" d=\"M278.5 233.7h22.2v44.6h-22.2z\" />\r\n      <g fill=\"#0052b4\" transform=\"translate(.2)\">\r\n        <circle cx=\"89\" cy=\"256\" r=\"22.3\" />\r\n        <circle cx=\"423\" cy=\"256\" r=\"22.3\" />\r\n      </g>\r\n    </g>\r\n    <g fill=\"none\">\r\n      <circle\r\n        cx=\"256\"\r\n        cy=\"256\"\r\n        :r=\"circleStroke\"\r\n        fill=\"none\"\r\n        :style=\"{ stroke: props.strokeColor, strokeWidth: props.strokeWidth }\"\r\n      />\r\n    </g>\r\n  </svg>\r\n</template>\r\n<script setup lang=\"ts\">\r\n  import { computed } from 'vue';\r\n\r\n  const props = withDefaults(\r\n    defineProps<{\r\n      flagName: string | undefined;\r\n      strokeColor?: string;\r\n      strokeWidth?: number;\r\n    }>(),\r\n    {\r\n      strokeColor: '#000',\r\n      strokeWidth: 0\r\n    }\r\n  );\r\n\r\n  const svgSize = computed(() => 512 + 2 * props.strokeWidth),\r\n    viewBoxOrigin = computed(() => -props.strokeWidth),\r\n    circleStroke = computed(() => 256 + props.strokeWidth / 2);\r\n</script>\r\n","<template>\r\n  <svg\r\n    xmlns=\"http://www.w3.org/2000/svg\"\r\n    class=\"svg-circle-flags\"\r\n    :viewBox=\"`${viewBoxOrigin} ${viewBoxOrigin} ${svgSize} ${svgSize}`\"\r\n  >\r\n    <mask id=\"d104ca52-b829-4a6a-be94-18103f1fd858\">\r\n      <circle cx=\"256\" cy=\"256\" r=\"256\" fill=\"#fff\" />\r\n    </mask>\r\n    <g mask=\"url(#d104ca52-b829-4a6a-be94-18103f1fd858)\">\r\n      <title v-if=\"props.flagName\">{{ props.flagName }}</title>\r\n      <path\r\n        fill=\"#ffda44\"\r\n        d=\"m0 144.7 256-20.5 256 20.5V178l-37.4 79 37.4 77v33.3l-256 24.1L0 367.3V334l37.7-77.3L0 178z\"\r\n      />\r\n      <path fill=\"#333\" d=\"M0 0h512v144.7H0z\" />\r\n      <path fill=\"#0052b4\" d=\"M0 367.3h512V512H0z\" />\r\n      <path fill=\"#a2001d\" d=\"M0 178h512v156H0z\" />\r\n      <path\r\n        fill=\"#ffda44\"\r\n        d=\"M89.2 244.9h334V267h-334zm44.6-44.6h244.8v22.3H133.8z\"\r\n      />\r\n      <path\r\n        fill=\"#eee\"\r\n        d=\"m256.2 189.2-18 65.2 18 68.4c66.8 0 124-66.8 124-66.8s-57.2-66.8-124-66.8z\"\r\n      />\r\n      <path\r\n        fill=\"#333\"\r\n        d=\"M256.2 322.8c-66.8 0-124-66.8-124-66.8s57.2-66.8 124-66.8\"\r\n      />\r\n      <path fill=\"#eee\" d=\"M211.7 233.7h22.2v44.6h-22.2z\" />\r\n      <path fill=\"#333\" d=\"M278.5 233.7h22.2v44.6h-22.2z\" />\r\n      <g fill=\"#0052b4\" transform=\"translate(.2)\">\r\n        <circle cx=\"89\" cy=\"256\" r=\"22.3\" />\r\n        <circle cx=\"423\" cy=\"256\" r=\"22.3\" />\r\n      </g>\r\n    </g>\r\n    <g fill=\"none\">\r\n      <circle\r\n        cx=\"256\"\r\n        cy=\"256\"\r\n        :r=\"circleStroke\"\r\n        fill=\"none\"\r\n        :style=\"{ stroke: props.strokeColor, strokeWidth: props.strokeWidth }\"\r\n      />\r\n    </g>\r\n  </svg>\r\n</template>\r\n<script setup lang=\"ts\">\r\n  import { computed } from 'vue';\r\n\r\n  const props = withDefaults(\r\n    defineProps<{\r\n      flagName: string | undefined;\r\n      strokeColor?: string;\r\n      strokeWidth?: number;\r\n    }>(),\r\n    {\r\n      strokeColor: '#000',\r\n      strokeWidth: 0\r\n    }\r\n  );\r\n\r\n  const svgSize = computed(() => 512 + 2 * props.strokeWidth),\r\n    viewBoxOrigin = computed(() => -props.strokeWidth),\r\n    circleStroke = computed(() => 256 + props.strokeWidth / 2);\r\n</script>\r\n"],"mappings":"iuCA+DQ,GAAA,EAAA,EAAA,cAAyB,IAAM,EAAI,EAAM,WAAW,EACxD,GAAA,EAAA,EAAA,cAA+B,CAAC,EAAM,WAAW,EACjD,GAAA,EAAA,EAAA,cAA8B,IAAM,EAAM,YAAc,CAAC"}