{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSleep/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 IconSleep: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"sleep, snooze, zzz\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11 2.75C11 2.33579 11.3358 2 11.75 2H15.75C16.0321 2 16.2903 2.15829 16.4183 2.40967C16.5463 2.66104 16.5225 2.96299 16.3566 3.19113L13.2228 7.5H15.75C16.1642 7.5 16.5 7.83579 16.5 8.25C16.5 8.66421 16.1642 9 15.75 9H11.75C11.4679 9 11.2097 8.84171 11.0817 8.59033C10.9537 8.33896 10.9775 8.03701 11.1434 7.80887L14.2772 3.5H11.75C11.3358 3.5 11 3.16421 11 2.75ZM3 8.75C3 8.33579 3.33579 8 3.75 8H8.25C8.52896 8 8.78487 8.15482 8.91434 8.40192C9.0438 8.64902 9.02543 8.94755 8.86665 9.17691L5.18143 14.5H8.25C8.66422 14.5 9 14.8358 9 15.25C9 15.6642 8.66422 16 8.25 16H3.75C3.47104 16 3.21513 15.8452 3.08567 15.5981C2.9562 15.351 2.97457 15.0525 3.13336 14.8231L6.81858 9.5H3.75C3.33579 9.5 3 9.16421 3 8.75ZM12 12.75C12 12.3358 12.3358 12 12.75 12H19.25C19.5353 12 19.796 12.1619 19.9224 12.4177C20.0488 12.6735 20.0191 12.9789 19.8458 13.2056L14.2677 20.5H19.25C19.6642 20.5 20 20.8358 20 21.25C20 21.6642 19.6642 22 19.25 22H12.75C12.4647 22 12.204 21.8381 12.0776 21.5823C11.9512 21.3265 11.9809 21.0211 12.1542 20.7944L17.7323 13.5H12.75C12.3358 13.5 12 13.1642 12 12.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSleep;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAyrC,EAAzrC,IAAqB,EAAO,UAAU,sBAAqB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,yjCAAyjC,KAAK,eAAc,CAAI,GAGnrC",
  "debugId": "51BB47F80163697864756E2164756E21",
  "names": []
}