{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMapEditFlat/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 IconMapEditFlat: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"map-edit-flat, route, plan\"><path d=\"M2.75 17.75V6.25C2.75 4.86929 3.86929 3.75 5.25 3.75H7V15.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M11.75 6.75H7\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M20.25 12.75V20.25H5.25C3.86929 20.25 2.75 19.1307 2.75 17.75C2.75 16.3693 3.86929 15.25 5.25 15.25H7\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M13.75 12.2502V9.91684L17.5 6.16684C18.1443 5.52251 19.189 5.52251 19.8333 6.16684C20.4777 6.81118 20.4777 7.85584 19.8333 8.50018L16.0833 12.2502H13.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconMapEditFlat;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAurB,EAAvrB,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,EAAE,+DAA+D,OAAO,eAAe,YAAY,MAAM,cAAc,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,wGAAwG,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,4JAA4J,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,CAAI,GAGjrB",
  "debugId": "07F5BAD7063BBB7164756E2164756E21",
  "names": []
}