{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconHomeOpen/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 IconHomeOpen: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"home-open, house\"><path d=\"M14.4754 2.92691C13.0596 1.68273 10.9404 1.68273 9.52457 2.92691L4.27457 7.54054C3.4644 8.25251 3 9.27885 3 10.3574V17.25C3 19.321 4.67893 21 6.75 21H8.25C9.2165 21 10 20.2165 10 19.25V17C10 15.8954 10.8954 15 12 15H12.0902C13.1947 15 14.0902 15.8954 14.0902 17V19.25C14.0902 20.2165 14.8737 21 15.8402 21H17.25C19.3211 21 21 19.321 21 17.25V10.3574C21 9.27885 20.5356 8.25251 19.7254 7.54054L14.4754 2.92691Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconHomeOpen;\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,gBAAof,EAApf,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,EAAE,4ZAA4Z,KAAK,eAAc,CAAI,GAG9e",
  "debugId": "784CE03A9E5CE3DA64756E2164756E21",
  "names": []
}