{"version":3,"file":"km-qEoUmoZ9.cjs","names":[],"sources":["../src/components/flags/km.vue","../src/components/flags/km.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=\"ff22c1de-aa6a-47c8-9450-26854b4f41ff\">\r\n      <circle cx=\"256\" cy=\"256\" r=\"256\" fill=\"#fff\" />\r\n    </mask>\r\n    <g mask=\"url(#ff22c1de-aa6a-47c8-9450-26854b4f41ff)\">\r\n      <title v-if=\"props.flagName\">{{ props.flagName }}</title>\r\n      <path fill=\"#ffda44\" d=\"M124.4 149.7 512 132.8V0H0z\" />\r\n      <path fill=\"#eee\" d=\"M112.5 132.8H512v122.4l-294.2 16.6z\" />\r\n      <path fill=\"#d80027\" d=\"M512 255.3H234.5l-136 139.8L512 377.7V256z\" />\r\n      <path fill=\"#0052b4\" d=\"M108.2 377.7 0 511.2l512 .8V377.7z\" />\r\n      <path fill=\"#6da544\" d=\"M.8 0 0 511.2l256-256z\" />\r\n      <g fill=\"#eee\">\r\n        <path\r\n          d=\"M67.5 255.3a78 78 0 0 1 61.2-76 78.2 78.2 0 0 0-16.7-2 78 78 0 1 0 16.7 154 78 78 0 0 1-61.2-76z\"\r\n        />\r\n        <path\r\n          d=\"m127.9 188.5 4.1 12.7h13.4l-10.8 8 4.1 12.7-10.8-8-10.9 8 4.2-12.8-10.9-7.9h13.4zm0 33.4 4.1 12.7h13.4l-10.8 8 4.1 12.7-10.8-8-10.9 8 4.2-12.8-10.9-7.9h13.4zm0 33.4L132 268h13.4l-10.8 8 4.1 12.6-10.8-7.8-10.9 7.8 4.2-12.7-10.9-7.9h13.4zm0 33.3 4.1 12.8h13.4l-10.8 8 4.1 12.6-10.8-7.8L117 322l4.2-12.7-10.9-7.9h13.4z\"\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=\"ff22c1de-aa6a-47c8-9450-26854b4f41ff\">\r\n      <circle cx=\"256\" cy=\"256\" r=\"256\" fill=\"#fff\" />\r\n    </mask>\r\n    <g mask=\"url(#ff22c1de-aa6a-47c8-9450-26854b4f41ff)\">\r\n      <title v-if=\"props.flagName\">{{ props.flagName }}</title>\r\n      <path fill=\"#ffda44\" d=\"M124.4 149.7 512 132.8V0H0z\" />\r\n      <path fill=\"#eee\" d=\"M112.5 132.8H512v122.4l-294.2 16.6z\" />\r\n      <path fill=\"#d80027\" d=\"M512 255.3H234.5l-136 139.8L512 377.7V256z\" />\r\n      <path fill=\"#0052b4\" d=\"M108.2 377.7 0 511.2l512 .8V377.7z\" />\r\n      <path fill=\"#6da544\" d=\"M.8 0 0 511.2l256-256z\" />\r\n      <g fill=\"#eee\">\r\n        <path\r\n          d=\"M67.5 255.3a78 78 0 0 1 61.2-76 78.2 78.2 0 0 0-16.7-2 78 78 0 1 0 16.7 154 78 78 0 0 1-61.2-76z\"\r\n        />\r\n        <path\r\n          d=\"m127.9 188.5 4.1 12.7h13.4l-10.8 8 4.1 12.7-10.8-8-10.9 8 4.2-12.8-10.9-7.9h13.4zm0 33.4 4.1 12.7h13.4l-10.8 8 4.1 12.7-10.8-8-10.9 8 4.2-12.8-10.9-7.9h13.4zm0 33.4L132 268h13.4l-10.8 8 4.1 12.6-10.8-7.8-10.9 7.8 4.2-12.7-10.9-7.9h13.4zm0 33.3 4.1 12.8h13.4l-10.8 8 4.1 12.6-10.8-7.8L117 322l4.2-12.7-10.9-7.9h13.4z\"\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":"itCAmDQ,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"}