{
  "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=\"M21.5303 2.46969C21.7229 2.66229 21.796 2.94416 21.7212 3.20606L17.7212 17.2061C17.65 17.4552 17.4552 17.65 17.2061 17.7212L3.20606 21.7212C2.94416 21.796 2.66229 21.7229 2.46969 21.5303C2.27709 21.3377 2.20405 21.0559 2.27888 20.794L6.27888 6.79398C6.35006 6.54482 6.54482 6.35006 6.79398 6.27888L20.794 2.27888C21.0559 2.20405 21.3377 2.27709 21.5303 2.46969ZM9.62502 12C9.62502 10.6883 10.6883 9.625 12 9.625C13.3117 9.625 14.375 10.6883 14.375 12C14.375 13.3117 13.3117 14.375 12 14.375C10.6883 14.375 9.62502 13.3117 9.62502 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,gBAAgqB,EAAhqB,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,whBAAwhB,KAAK,eAAc,CAAI,GAG1pB",
  "debugId": "EF08B5B0BF99527C64756E2164756E21",
  "names": []
}