{"version":3,"file":"gb-wls-BWbaaBKx.cjs","names":[],"sources":["../src/components/flags/gb-wls.vue","../src/components/flags/gb-wls.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=\"8631b44d-6b07-490c-9ba0-359c4a705c15\">\r\n      <circle cx=\"256\" cy=\"256\" r=\"256\" fill=\"#fff\" />\r\n    </mask>\r\n    <g mask=\"url(#8631b44d-6b07-490c-9ba0-359c4a705c15)\">\r\n      <title v-if=\"props.flagName\">{{ props.flagName }}</title>\r\n      <path fill=\"#6da544\" d=\"m0 256 256-64 256 64v256H0Z\" />\r\n      <path fill=\"#eee\" d=\"M0 0h512v256H0Z\" />\r\n      <path\r\n        fill=\"#d80027\"\r\n        d=\"M166 149c-12 0-21 9-21 21h-14c-19 0-35 15-35 34h25c3 8 10 14 17 14h7v48l2 14-16 5c-1-15-13-26-27-26-4 0-8 3-8 6v56c0 4 4 7 8 7l12-3 56-15c6 3 14 5 22 5h6v14h-13c-16 0-28 12-28 27 0 4 3 7 7 7h62c4 0 7-3 7-7v-41l9-1h49l9 15h-5c-15 0-27 12-27 27 0 4 3 7 7 7h69c4 0 7-3 7-7 0-6-2-11-5-16l-15-26h23c29 0 52-23 52-52v-3l8 2h6c3-3 4-7 2-10l-28-40-1-1c-3-2-8-2-10 1l-27 40c-1 2-2 4-1 6 1 4 5 6 9 5l8-3v3c0 10-8 18-18 18h-37c12-12 22-26 28-41l25-57 1-5c0-8-6-14-14-14h-95c-15 0-28 12-28 27v17a11 11 0 1 1-22 0v-31c12-4 21-14 21-27h-41z\"\r\n      />\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=\"8631b44d-6b07-490c-9ba0-359c4a705c15\">\r\n      <circle cx=\"256\" cy=\"256\" r=\"256\" fill=\"#fff\" />\r\n    </mask>\r\n    <g mask=\"url(#8631b44d-6b07-490c-9ba0-359c4a705c15)\">\r\n      <title v-if=\"props.flagName\">{{ props.flagName }}</title>\r\n      <path fill=\"#6da544\" d=\"m0 256 256-64 256 64v256H0Z\" />\r\n      <path fill=\"#eee\" d=\"M0 0h512v256H0Z\" />\r\n      <path\r\n        fill=\"#d80027\"\r\n        d=\"M166 149c-12 0-21 9-21 21h-14c-19 0-35 15-35 34h25c3 8 10 14 17 14h7v48l2 14-16 5c-1-15-13-26-27-26-4 0-8 3-8 6v56c0 4 4 7 8 7l12-3 56-15c6 3 14 5 22 5h6v14h-13c-16 0-28 12-28 27 0 4 3 7 7 7h62c4 0 7-3 7-7v-41l9-1h49l9 15h-5c-15 0-27 12-27 27 0 4 3 7 7 7h69c4 0 7-3 7-7 0-6-2-11-5-16l-15-26h23c29 0 52-23 52-52v-3l8 2h6c3-3 4-7 2-10l-28-40-1-1c-3-2-8-2-10 1l-27 40c-1 2-2 4-1 6 1 4 5 6 9 5l8-3v3c0 10-8 18-18 18h-37c12-12 22-26 28-41l25-57 1-5c0-8-6-14-14-14h-95c-15 0-28 12-28 27v17a11 11 0 1 1-22 0v-31c12-4 21-14 21-27h-41z\"\r\n      />\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":"ypCA4CQ,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"}