{
  "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 4.75C4 4.33579 4.33579 4 4.75 4H11.25V9.5H4V4.75Z\" fill=\"currentColor\"/><path d=\"M12.75 9.5V4H19.25C19.6642 4 20 4.33579 20 4.75V9.5H12.75Z\" fill=\"currentColor\"/><path d=\"M22 11.75C22 11.3358 21.6642 11 21.25 11H2.75C2.33579 11 2 11.3358 2 11.75V17.25C2 17.6642 2.33579 18 2.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.25V18H21.25C21.6642 18 22 17.6642 22 17.25V11.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,gBAA4iB,EAA5iB,IAAqB,EAAO,UAAU,OAAM,gBAAC,OAAD,CAAM,EAAE,uDAAuD,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6DAA6D,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mTAAmT,KAAK,eAAc,CAAI,GAGtiB",
  "debugId": "60B594B8D8BF8F5564756E2164756E21",
  "names": []
}