{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMap/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 IconMap: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"map, paper\"><path d=\"M7.90479 3.99124C7.93639 3.98071 7.96813 3.97077 8 3.96141L8 18.5406L5.61963 19.3341C3.83892 19.9277 2 18.6023 2 16.7252V7.94159C2 6.75791 2.75743 5.70703 3.88037 5.33272L7.90479 3.99124Z\" fill=\"currentColor\"/><path d=\"M14.4168 20.0284L9.5 18.5155L9.5 3.94757C9.52781 3.95518 9.55553 3.96323 9.58315 3.97173L14.5 5.48461L14.5 20.0526C14.4722 20.045 14.4445 20.0369 14.4168 20.0284Z\" fill=\"currentColor\"/><path d=\"M16 20.0387C16.0319 20.0294 16.0636 20.0194 16.0952 20.0089L20.1196 18.6674C21.2426 18.2931 22 17.2422 22 16.0586V7.27493C22 5.39789 20.1611 4.07248 18.3804 4.66605L16 5.45951L16 20.0387Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMap;\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,gBAA6qB,EAA7qB,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,EAAE,8LAA8L,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,qKAAqK,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8LAA8L,KAAK,eAAc,CAAI,GAGvqB",
  "debugId": "E7B9034FE4BC00F564756E2164756E21",
  "names": []
}