{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBed/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 IconBed: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bed\"><path d=\"M4 7.75C4 5.67893 5.67893 4 7.75 4H11.25V9.5H4V7.75Z\" fill=\"currentColor\"/><path d=\"M12.75 9.5V4H16.25C18.3211 4 20 5.67893 20 7.75V9.5H12.75Z\" fill=\"currentColor\"/><path d=\"M22 14.75C22 12.6789 20.3211 11 18.25 11H5.75C3.67893 11 2 12.6789 2 14.75V16.25C2 17.2165 2.7835 18 3.75 18H4V19.25C4 19.6642 4.33579 20 4.75 20C5.16421 20 5.5 19.6642 5.5 19.25V18H18.5V19.25C18.5 19.6642 18.8358 20 19.25 20C19.6642 20 20 19.6642 20 19.25V18H20.25C21.2165 18 22 17.2165 22 16.25V14.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBed;\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,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAA2iB,EAA3iB,IAAqB,EAAO,UAAU,OAAM,gBAAC,OAAD,CAAM,EAAE,uDAAuD,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6DAA6D,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kTAAkT,KAAK,eAAc,CAAI,GAGriB",
  "debugId": "017C86A788150BAB64756E2164756E21",
  "names": []
}