{
  "version": 3,
  "sources": ["src/IconEmojiAngry/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconEmojiAngry: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconEmojiAngry\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12.002 13.9004C10.4923 13.89 9.08078 14.7081 8.21191 15.8213C8.11207 15.9464 8.02095 16.0704 7.93164 16.2021C7.85938 16.3099 7.82921 16.4422 7.84961 16.5713C7.87002 16.7001 7.93908 16.8156 8.04297 16.8926C8.14699 16.9696 8.27796 17.0025 8.40723 16.9844C8.53666 16.9662 8.65439 16.8984 8.73633 16.7979C8.82188 16.6936 8.90662 16.596 8.99805 16.499C9.8043 15.6361 10.8902 15.0947 12.0029 15.0996C13.1156 15.0925 14.2005 15.6335 15.0039 16.498C15.095 16.5951 15.1805 16.6915 15.2656 16.7959C15.3472 16.8966 15.4635 16.9657 15.5928 16.9844C15.7221 17.003 15.8536 16.9703 15.958 16.8936C16.0623 16.8168 16.1326 16.7012 16.1533 16.5723C16.174 16.4435 16.143 16.3119 16.0713 16.2041C15.9824 16.0721 15.8915 15.9476 15.792 15.8223C14.9258 14.7059 13.5115 13.8869 12.002 13.9004ZM6.6582 8.02539C6.53436 7.98739 6.39873 8.0006 6.28223 8.06055C6.16569 8.1206 6.07806 8.22286 6.03711 8.3457C5.99616 8.46855 6.0053 8.60274 6.0625 8.7207C6.11974 8.83857 6.21993 8.9307 6.3418 8.97461C6.40787 8.99839 6.47396 9.02212 6.54004 9.0459C7.10953 9.25085 7.67936 9.45525 8.24902 9.66016C8.09135 9.89955 8.00009 10.1928 8 10.5195C8 11.4032 8.67157 12 9.5 12C10.3284 12 11 11.4032 11 10.5195C11 10.4103 10.9893 10.305 10.9697 10.2041C11.0116 10.1498 11.0471 10.09 11.0693 10.0234C11.1208 9.86896 11.1101 9.70079 11.0391 9.55859C10.9679 9.4162 10.8416 9.31036 10.6895 9.26367C10.6224 9.24308 10.5553 9.22274 10.4883 9.20215C9.27879 8.83061 8.06886 8.45943 6.85938 8.08789C6.79225 8.06727 6.72533 8.04601 6.6582 8.02539ZM17.7178 8.06055C17.6013 8.0006 17.4656 7.98739 17.3418 8.02539C17.2747 8.04601 17.2077 8.06727 17.1406 8.08789C15.9311 8.45943 14.7212 8.83061 13.5117 9.20215C13.4447 9.22274 13.3776 9.24308 13.3105 9.26367C13.1584 9.31036 13.0321 9.4162 12.9609 9.55859C12.8899 9.70079 12.8792 9.86896 12.9307 10.0234C12.9528 10.0898 12.9876 10.1499 13.0293 10.2041C13.0098 10.3049 13 10.4104 13 10.5195C13 11.4032 13.6716 12 14.5 12C15.3284 12 16 11.4032 16 10.5195C15.9999 10.1926 15.9079 9.89963 15.75 9.66016C16.3199 9.45515 16.8902 9.25096 17.46 9.0459C17.526 9.02212 17.5921 8.99839 17.6582 8.97461C17.7801 8.9307 17.8803 8.83857 17.9375 8.7207C17.9947 8.60274 18.0038 8.46855 17.9629 8.3457C17.9219 8.22286 17.8343 8.1206 17.7178 8.06055Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconEmojiAngry;\n",
    "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\ntype Props = CentralIconBaseProps;\n\nconst ModernCentralIconBase: React.FC<Props> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: Props },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return <CentralIconSvg {...this.props.iconProps} instanceId={this.state.instanceId} />;\n        }\n      };\n\nexport const CentralIconBase: React.FC<Props> = (props) =>\n  LegacyCentralIconBase ? (\n    <LegacyCentralIconBase iconProps={props} />\n  ) : (\n    <ModernCentralIconBase {...props} />\n  );\n\nconst CentralIconSvg: FC<CentralIconBaseProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\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={uniqueMaskId}\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(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAU1B,IAAM,EAAyC,CAAC,IAAU,CACxD,IAAM,EAAa,EAAM,MAAM,EAC/B,OAAO,gBAAC,EAAD,IAAoB,EAAO,WAAY,EAAY,GAGxD,EAAe,EAIb,EACJ,OAAO,EAAM,QAAU,WACnB,OACA,cAAc,EAAM,SAGlB,CACA,MAAiC,CAAC,EAElC,iBAAiB,EAAG,CAElB,KAAK,SAAS,CAAE,WAAY,UAAU,EAAE,GAAe,CAAC,EAG1D,MAAM,EAAG,CACP,OAAO,gBAAC,EAAD,IAAoB,KAAK,MAAM,UAAW,WAAY,KAAK,MAAM,WAAY,EAExF,EAEO,EAAmC,CAAC,IAC/C,EACE,gBAAC,EAAD,CAAuB,UAAW,EAAO,EAEzC,gBAAC,EAAD,IAA2B,EAAO,EAGhC,EAAqE,EACzE,WACA,OAAO,GACP,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,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,GDrFN,eAAS,yBAEF,IAAM,EAAmE,EAAM,KAAK,CAAC,IACnF,gBAA47E,EAA57E,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,oyEAAoyE,KAAK,eAAc,CAAI,CACp8E,EAEc",
  "debugId": "0A7416768331223964756E2164756E21",
  "names": []
}