{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEmojiSleep/index.tsx"],
  "sourcesContent": [
    "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <Svg\n      {...props}\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    >\n      {masked ? (\n        <>\n          <Mask\n            id={maskId}\n            maskUnits=\"userSpaceOnUse\"\n            x=\"0\"\n            y=\"0\"\n            width=\"24\"\n            height=\"24\"\n          >\n            <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n            <G color=\"#fff\">{children}</G>\n          </Mask>\n          <Rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconEmojiSleep: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconEmojiSleep\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM6.70234 11.3367L7.25 10.5C6.70234 11.3367 6.70196 11.3365 6.70234 11.3367L6.70386 11.3377L6.70543 11.3387L6.70871 11.3408L6.71583 11.3454L6.73236 11.3557C6.74438 11.3631 6.75842 11.3714 6.7745 11.3806C6.80664 11.3991 6.84689 11.4208 6.89526 11.4445C6.99205 11.4921 7.12123 11.5475 7.28271 11.6004C7.60702 11.7065 8.05561 11.8 8.625 11.8C9.19439 11.8 9.64298 11.7065 9.96729 11.6004C10.1288 11.5475 10.258 11.4921 10.3547 11.4445C10.4031 11.4208 10.4434 11.3991 10.4755 11.3806C10.4916 11.3714 10.5056 11.3631 10.5176 11.3557L10.5342 11.3454L10.5413 11.3408L10.5446 11.3387L10.5461 11.3377C10.5465 11.3374 10.5477 11.3367 10 10.5L10.5477 11.3367L11.3844 10.789L10.289 9.11564L9.47534 9.64824L9.47339 9.64921C9.45559 9.65795 9.4129 9.67745 9.34521 9.6996C9.21118 9.74347 8.97228 9.8 8.625 9.8C8.27772 9.8 8.03882 9.74347 7.90479 9.6996C7.8371 9.67745 7.79441 9.65795 7.77661 9.64921L7.77466 9.64824L6.96096 9.11564L5.86564 10.789L6.70234 11.3367ZM14 10.5L13.4523 11.3367L12.6156 10.789L13.711 9.11564L14.5247 9.64824L14.5266 9.64921C14.5444 9.65795 14.5871 9.67745 14.6548 9.6996C14.7888 9.74347 15.0277 9.8 15.375 9.8C15.7223 9.8 15.9612 9.74347 16.0952 9.6996C16.1629 9.67745 16.2056 9.65795 16.2234 9.64921L16.2253 9.64824L17.039 9.11564L18.1344 10.789L17.2977 11.3367L16.75 10.5C17.2977 11.3367 17.298 11.3365 17.2977 11.3367L17.2961 11.3377L17.2946 11.3387L17.2913 11.3408L17.2842 11.3454L17.2676 11.3557C17.2556 11.3631 17.2416 11.3714 17.2255 11.3806C17.1934 11.3991 17.1531 11.4208 17.1047 11.4445C17.008 11.4921 16.8788 11.5475 16.7173 11.6004C16.393 11.7065 15.9444 11.8 15.375 11.8C14.8056 11.8 14.357 11.7065 14.0327 11.6004C13.8712 11.5475 13.742 11.4921 13.6453 11.4445C13.5969 11.4208 13.5566 11.3991 13.5245 11.3806C13.5084 11.3714 13.4944 11.3631 13.4824 11.3557L13.4658 11.3454L13.4587 11.3408L13.4554 11.3387L13.4539 11.3377C13.4535 11.3374 13.4523 11.3367 14 10.5ZM10.3591 14.5667L9.42576 14.2076L8.70762 16.0742L9.64093 16.4333C11.2583 17.0556 12.7417 17.0556 14.3591 16.4333L15.2924 16.0742L14.5742 14.2076L13.6409 14.5667C12.4858 15.0111 11.5142 15.0111 10.3591 14.5667Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconEmojiSleep;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAAwzE,EAAxzE,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+pEAA+pE,KAAK,eAAc,CAAI,EACh0E,EAEc",
  "debugId": "9763CD9B711895CF64756E2164756E21",
  "names": []
}