{
  "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=\"M19.9287 2.52619C20.8716 2.25678 21.7434 3.12855 21.474 4.0715L17.8738 16.6719C17.7077 17.2533 17.2533 17.7077 16.6719 17.8738L4.0715 21.474C3.12856 21.7434 2.25678 20.8716 2.52619 19.9287L6.12632 7.32822C6.29242 6.74686 6.74686 6.29242 7.32822 6.12632L19.9287 2.52619ZM9.62508 12C9.62508 10.6883 10.6884 9.625 12.0001 9.625C13.3118 9.625 14.3751 10.6883 14.3751 12C14.3751 13.3117 13.3118 14.375 12.0001 14.375C10.6884 14.375 9.62508 13.3117 9.62508 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": "1BF3BCB3C2DB97D564756E2164756E21",
  "names": []
}