{"version":3,"file":"my-gz6TgYjq.cjs","names":[],"sources":["../src/components/flags/my.vue","../src/components/flags/my.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=\"2f3c2b43-ecf2-4052-9c7b-49aae2f1544a\">\r\n      <circle cx=\"256\" cy=\"256\" r=\"256\" fill=\"#fff\" />\r\n    </mask>\r\n    <g mask=\"url(#2f3c2b43-ecf2-4052-9c7b-49aae2f1544a)\">\r\n      <title v-if=\"props.flagName\">{{ props.flagName }}</title>\r\n      <path\r\n        fill=\"#eee\"\r\n        d=\"M0 256 256 0h256v55.7l-19.5 33 19.5 33.7v66.8l-22.1 37.7L512 256v66.8l-20.2 38.5 20.2 28.3v66.7l-254.5 28.2L0 456.3v-66.7l26-35.1-26-31.7z\"\r\n      />\r\n      <path\r\n        fill=\"#d80027\"\r\n        d=\"M256 256h256v-66.8H222.9zm-33.1-133.6H512V55.7H222.9zM512 512v-55.7H0V512zM0 389.6h512v-66.8H0z\"\r\n      />\r\n      <path fill=\"#0052b4\" d=\"M0 0h256v256H0z\" />\r\n      <g fill=\"#ffda44\">\r\n        <path\r\n          d=\"M170.2 219.1a63.3 63.3 0 1 1 30.1-119 78 78 0 1 0 0 111.4 63 63 0 0 1-30 7.6z\"\r\n        />\r\n        <path\r\n          d=\"m188 111.3 11.3 23.5 25.4-5.9-11.4 23.5 20.4 16.2-25.4 5.7.1 26-20.3-16.2-20.4 16.2.1-26-25.4-5.7 20.4-16.2-11.4-23.5 25.4 6z\"\r\n        />\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=\"2f3c2b43-ecf2-4052-9c7b-49aae2f1544a\">\r\n      <circle cx=\"256\" cy=\"256\" r=\"256\" fill=\"#fff\" />\r\n    </mask>\r\n    <g mask=\"url(#2f3c2b43-ecf2-4052-9c7b-49aae2f1544a)\">\r\n      <title v-if=\"props.flagName\">{{ props.flagName }}</title>\r\n      <path\r\n        fill=\"#eee\"\r\n        d=\"M0 256 256 0h256v55.7l-19.5 33 19.5 33.7v66.8l-22.1 37.7L512 256v66.8l-20.2 38.5 20.2 28.3v66.7l-254.5 28.2L0 456.3v-66.7l26-35.1-26-31.7z\"\r\n      />\r\n      <path\r\n        fill=\"#d80027\"\r\n        d=\"M256 256h256v-66.8H222.9zm-33.1-133.6H512V55.7H222.9zM512 512v-55.7H0V512zM0 389.6h512v-66.8H0z\"\r\n      />\r\n      <path fill=\"#0052b4\" d=\"M0 0h256v256H0z\" />\r\n      <g fill=\"#ffda44\">\r\n        <path\r\n          d=\"M170.2 219.1a63.3 63.3 0 1 1 30.1-119 78 78 0 1 0 0 111.4 63 63 0 0 1-30 7.6z\"\r\n        />\r\n        <path\r\n          d=\"m188 111.3 11.3 23.5 25.4-5.9-11.4 23.5 20.4 16.2-25.4 5.7.1 26-20.3-16.2-20.4 16.2.1-26-25.4-5.7 20.4-16.2-11.4-23.5 25.4 6z\"\r\n        />\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":"yhCAuDQ,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"}