{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPark/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 IconPark: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"park, tree, nature\"><path d=\"M11.9992 2.75C13.6455 2.75 15.0342 3.84413 15.4795 5.34333C15.5296 5.34129 15.5799 5.33929 15.6305 5.33929C17.636 5.33929 19.2617 6.96225 19.2617 8.96429C19.2617 9.59458 19.0993 10.1866 18.8159 10.703C19.7151 11.3628 20.2992 12.4255 20.2992 13.625C20.2992 15.627 18.6735 17.25 16.668 17.25H7.33047C5.32498 17.25 3.69922 15.627 3.69922 13.625C3.69922 12.4258 4.28268 11.3628 5.18151 10.703C4.89825 10.1867 4.73672 9.59441 4.73672 8.96429C4.73672 6.96225 6.36248 5.33929 8.36797 5.33929C8.41821 5.33929 8.46817 5.34131 8.51792 5.34333C8.9631 3.84398 10.3528 2.75 11.9992 2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M12 17.25V21\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M9 21.25H15\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconPark;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAA8yB,EAA9yB,IAAqB,EAAO,UAAU,sBAAqB,gBAAC,OAAD,CAAM,EAAE,ikBAAikB,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,MAAK,CAAI,GAGxyB",
  "debugId": "BBE4740EF0312DCD64756E2164756E21",
  "names": []
}