{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEmojiAngry/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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconEmojiAngry: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconEmojiAngry\"><Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/><Path d=\"M11 10.52C11 11.4037 10.3284 12 9.5 12C8.67157 12 8 11.4037 8 10.52C8 9.63634 8.67157 9 9.5 9C10.3284 9 11 9.63634 11 10.52Z\" fill=\"currentColor\"/><Path d=\"M16 10.52C16 11.4037 15.3284 12 14.5 12C13.6716 12 13 11.4037 13 10.52C13 9.63634 13.6716 9 14.5 9C15.3284 9 16 9.63634 16 10.52Z\" fill=\"currentColor\"/><Path d=\"M6.65811 8.02566C6.5527 8.34189 6.4473 8.65811 6.34189 8.97434C6.41636 9.00092 6.49083 9.0275 6.5653 9.05409C7.90582 9.53255 9.24633 10.011 10.5868 10.4895C10.6613 10.516 10.7358 10.5426 10.8103 10.5692C10.9368 10.1897 11.0632 9.81026 11.1897 9.43079C11.1142 9.40737 11.0387 9.38395 10.9632 9.36053C9.60367 8.93899 8.24418 8.51745 6.8847 8.09591C6.80917 8.0725 6.73364 8.04908 6.65811 8.02566Z\" fill=\"currentColor\"/><Path d=\"M17.6581 8.97434C17.5527 8.65811 17.4473 8.34189 17.3419 8.02566C17.2664 8.04908 17.1908 8.0725 17.1153 8.09591C15.7558 8.51745 14.3963 8.93899 13.0368 9.36053C12.9613 9.38395 12.8858 9.40737 12.8103 9.43079C12.9368 9.81026 13.0632 10.1897 13.1897 10.5692C13.2642 10.5426 13.3387 10.516 13.4132 10.4895C14.7537 10.011 16.0942 9.53255 17.4347 9.05409C17.5092 9.0275 17.5836 9.00092 17.6581 8.97434Z\" fill=\"currentColor\"/><Path d=\"M7.5717 16.742C7.85723 16.914 8.14277 17.086 8.4283 17.258C8.51419 17.1285 8.59983 17.0092 8.69379 16.8877C9.51462 15.8113 10.7312 15.0923 12.0022 15.1C13.273 15.0893 14.4896 15.8072 15.3066 16.8856C15.4002 17.0073 15.4854 17.1268 15.5708 17.2565C15.8569 17.0855 16.1431 16.9145 16.4292 16.7435C16.3421 16.585 16.2536 16.4371 16.1534 16.2852C15.2945 14.9424 13.7287 13.882 12.0009 13.9C10.273 13.8866 8.71174 14.9457 7.84882 16.2849C7.74819 16.4364 7.65925 16.5839 7.5717 16.742Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconEmojiAngry;\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,iBAAS,UAAQ,yBAEV,IAAM,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAAiyD,EAAjyD,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+HAA+H,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oIAAoI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4YAA4Y,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gZAAgZ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,keAAke,KAAK,eAAc,CAAI,EACzyD,EAEc",
  "debugId": "1360BBD3DEEE50E364756E2164756E21",
  "names": []
}