{
  "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=\"M17.9627 2.90224C15.9915 0.931052 12.6351 1.7234 11.7535 4.36803L11.5015 5.12399C11.1848 6.07428 10.278 6.70072 9.27707 6.66068L6.69683 6.55747C3.2859 6.42104 1.48146 10.5423 3.89529 12.9561L6.93937 16.0002L3.2197 19.7199C2.92681 20.0128 2.92681 20.4876 3.2197 20.7805C3.5126 21.0734 3.98747 21.0734 4.28036 20.7805L8.00003 17.0609L11.0441 20.1049C13.4579 22.5188 17.5792 20.7143 17.4428 17.3034L17.3396 14.7232C17.2995 13.7223 17.926 12.8155 18.8762 12.4987L19.6322 12.2467C22.2768 11.3652 23.0692 8.0087 21.098 6.03751L17.9627 2.90224Z\" 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,gBAAumB,EAAvmB,IAAqB,EAAO,UAAU,OAAM,gBAAC,OAAD,CAAM,EAAE,4hBAA4hB,KAAK,eAAc,CAAI,GAGjmB",
  "debugId": "F7FBCA2CD90DA8E064756E2164756E21",
  "names": []
}