{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPillow/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 IconPillow: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"pillow, sleep, snooze\"><path d=\"M4.80556 3C3.25371 3 2 4.26159 2 5.8125C2 6.38489 2.17137 6.91958 2.46586 7.36496C2.65045 7.64412 2.67102 7.82866 2.64671 7.91866C2.31153 9.15938 2 10.6631 2 12C2 13.3369 2.31153 14.8406 2.64671 16.0813C2.67102 16.1713 2.65045 16.3559 2.46586 16.635C2.17137 17.0804 2 17.6151 2 18.1875C2 19.7384 3.25371 21 4.80556 21C5.41364 21 5.97837 20.8052 6.43828 20.4749C6.71705 20.2746 6.90207 20.2496 6.99044 20.2715C8.47803 20.6393 10.3491 21 12 21C13.6509 21 15.522 20.6393 17.0096 20.2715C17.0979 20.2496 17.283 20.2746 17.5617 20.4749C18.0217 20.8052 18.5864 21 19.1945 21C20.7463 21 22 19.7384 22 18.1875C22 17.6151 21.8287 17.0804 21.5341 16.635C21.3496 16.3559 21.329 16.1713 21.3533 16.0813C21.6885 14.8406 22 13.3369 22 12C22 10.6631 21.6885 9.15939 21.3533 7.91866C21.329 7.82866 21.3495 7.64412 21.5341 7.36496C21.8286 6.91958 22 6.38489 22 5.8125C22 4.26159 20.7463 3 19.1944 3C18.5837 3 18.0168 3.19647 17.5558 3.52937C17.2768 3.73085 17.0918 3.75601 17.0037 3.73428C15.5062 3.36484 13.6253 3 12 3C10.3747 3 8.49378 3.36484 6.99631 3.73428C6.90824 3.75601 6.72315 3.73085 6.44416 3.52937C5.9832 3.19647 5.41625 3 4.80556 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPillow;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAwsC,EAAxsC,IAAqB,EAAO,UAAU,yBAAwB,gBAAC,OAAD,CAAM,EAAE,2mCAA2mC,KAAK,eAAc,CAAI,GAGlsC",
  "debugId": "D192C367154FD1A264756E2164756E21",
  "names": []
}