{
  "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.53097 2.26929 7.187 2.71124 7.68388C2.34958 8.97672 2 10.5849 2 12C2 13.4151 2.34958 15.0233 2.71124 16.3161C2.26929 16.813 2 17.469 2 18.1875C2 19.7384 3.25371 21 4.80556 21C5.5628 21 6.24931 20.6989 6.75304 20.2119C8.28424 20.6017 10.2661 21 12 21C13.7339 21 15.7158 20.6017 17.247 20.2119C17.7507 20.6989 18.4372 21 19.1945 21C20.7463 21 22 19.7384 22 18.1875C22 17.469 21.7307 16.813 21.2888 16.3161C21.6504 15.0233 22 13.4151 22 12C22 10.5849 21.6504 8.97672 21.2888 7.68388C21.7307 7.187 22 6.53097 22 5.8125C22 4.26159 20.7463 3 19.1944 3C18.4343 3 17.7454 3.30343 17.2412 3.79369C15.6992 3.40245 13.7059 3 12 3C10.2941 3 8.30085 3.40245 6.75882 3.79369C6.25456 3.30343 5.56571 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,gBAAq0B,EAAr0B,IAAqB,EAAO,UAAU,yBAAwB,gBAAC,OAAD,CAAM,EAAE,wuBAAwuB,KAAK,eAAc,CAAI,GAG/zB",
  "debugId": "F5EC798F0FAEFF7064756E2164756E21",
  "names": []
}