{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconLocation/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 IconLocation: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"location, explore, compass\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.1963 3.02048C19.8935 2.53554 21.4627 4.10474 20.9778 5.80203L18.1774 15.6034C17.8215 16.8492 16.8477 17.8229 15.6019 18.1789L5.80057 20.9793C4.10328 21.4642 2.53407 19.895 3.01902 18.1977L5.8194 8.39638C6.17534 7.1506 7.14913 6.1768 8.39491 5.82086L18.1963 3.02048ZM9.62341 12C9.62341 10.6883 10.6867 9.625 11.9984 9.625C13.3101 9.625 14.3734 10.6883 14.3734 12C14.3734 13.3117 13.3101 14.375 11.9984 14.375C10.6867 14.375 9.62341 13.3117 9.62341 12Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLocation;\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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAAilB,EAAjlB,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ycAAyc,KAAK,eAAc,CAAI,GAG3kB",
  "debugId": "9F43C69F8F7D800F64756E2164756E21",
  "names": []
}