{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconHomePlus/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 IconHomePlus: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"home-plus\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.7031 3.06155C11.9239 2.96633 12.1795 2.98171 12.3887 3.10843L20.6387 8.10843C20.8629 8.24436 21 8.4878 21 8.75003V20.25C20.9999 20.6642 20.6641 21 20.25 21H3.75C3.33585 21 3.0001 20.6642 3 20.25V8.75003C3 8.4878 3.13709 8.24436 3.36133 8.10843L11.6113 3.10843L11.7031 3.06155ZM12 9.50003C11.5858 9.50003 11.25 9.83581 11.25 10.25V12.25H9.25C8.83579 12.25 8.5 12.5858 8.5 13C8.50005 13.4142 8.83582 13.75 9.25 13.75H11.25V15.75C11.2501 16.1642 11.5858 16.5 12 16.5C12.4142 16.5 12.7499 16.1642 12.75 15.75V13.75H14.75C15.1642 13.75 15.4999 13.4142 15.5 13C15.5 12.5858 15.1642 12.25 14.75 12.25H12.75V10.25C12.75 9.83581 12.4142 9.50003 12 9.50003Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconHomePlus;\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,gBAAqwB,EAArwB,IAAqB,EAAO,UAAU,aAAY,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8oBAA8oB,KAAK,eAAc,CAAI,GAG/vB",
  "debugId": "9440642F36075D9E64756E2164756E21",
  "names": []
}