{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPin/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\n      width={typeof size === \"number\" ? `${size}px` : size}\n      height={typeof size === \"number\" ? `${size}px` : size}\n      viewBox=\"0 0 24 24\"\n      fill=\"none\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPin: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"pin\"><path d=\"M12.268 20.5787L8.3751 16.6858L4.28043 20.7804C3.98753 21.0733 3.51266 21.0733 3.21977 20.7804C2.92687 20.4875 2.92687 20.0127 3.21977 19.7198L7.31444 15.6251L3.42151 11.7322C2.47798 10.7886 2.89518 9.17864 4.17818 8.81207L10.9025 6.89082C10.9653 6.87289 11.0186 6.83114 11.0509 6.77447L13.1993 3.01475C13.7718 2.01288 15.1403 1.82962 15.9562 2.64555L21.3546 8.04399C22.1706 8.85993 21.9873 10.2284 20.9855 10.8009L17.2257 12.9493C17.1691 12.9817 17.1273 13.0349 17.1094 13.0977L15.1881 19.822C14.8216 21.105 13.2116 21.5222 12.268 20.5787Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPin;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAA0mB,EAA1mB,IAAqB,EAAO,UAAU,OAAM,gBAAC,OAAD,CAAM,EAAE,+hBAA+hB,KAAK,eAAc,CAAI,GAGpmB",
  "debugId": "FCA5579DF1A86E8E64756E2164756E21",
  "names": []
}