{
  "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=\"M10.0566 4.05077C11.2511 3.32699 12.7489 3.32699 13.9434 4.05077L19.1934 7.23241C20.3146 7.91202 20.9999 9.12832 21 10.4394V17.25C20.9999 19.3209 19.321 21 17.25 21H6.75C4.67902 21 3.00014 19.3209 3 17.25V10.4394C3.00011 9.12832 3.68538 7.91202 4.80664 7.23241L10.0566 4.05077ZM12 9.49999C11.5858 9.49999 11.25 9.83578 11.25 10.25V12.25H9.25C8.83579 12.25 8.5 12.5858 8.5 13C8.50007 13.4141 8.83583 13.75 9.25 13.75H11.25V15.75C11.2501 16.1641 11.5858 16.5 12 16.5C12.4142 16.5 12.7499 16.1641 12.75 15.75V13.75H14.75C15.1642 13.75 15.4999 13.4141 15.5 13C15.5 12.5858 15.1642 12.25 14.75 12.25H12.75V10.25C12.75 9.83578 12.4142 9.49999 12 9.49999Z\" 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,gBAAkwB,EAAlwB,IAAqB,EAAO,UAAU,aAAY,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2oBAA2oB,KAAK,eAAc,CAAI,GAG5vB",
  "debugId": "03AE535A9B6257FA64756E2164756E21",
  "names": []
}