{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEmojiSmilingFace/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 IconEmojiSmilingFace: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconEmojiSmilingFace\"><Path d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\" stroke=\"currentColor\"/><Path d=\"M15.4551 14.55C15.1912 16.2216 13.7448 17.5001 11.999 17.5002C10.2531 17.5002 8.80583 16.2217 8.54199 14.55C10.8566 14.7542 13.1405 14.7541 15.4551 14.55ZM9.71973 8.09293C10.0481 8.10529 10.3582 8.27902 10.543 8.56851C10.8834 9.10226 10.8723 10.2351 9.1416 11.6515C7.03226 10.9124 6.635 9.8503 6.77246 9.23257C6.84713 8.8975 7.0795 8.62894 7.38379 8.50504C7.64669 8.39798 7.96577 8.39788 8.29004 8.56656L8.62988 8.74332L8.88965 8.46109C9.13665 8.19173 9.43609 8.08225 9.71973 8.09293ZM14.2822 8.09293C14.5658 8.08227 14.8653 8.19176 15.1123 8.46109L15.3721 8.74332L15.7119 8.56656C16.0362 8.39788 16.3553 8.39798 16.6182 8.50504C16.9224 8.62894 17.1548 8.89754 17.2295 9.23257C17.367 9.85038 16.9694 10.9124 14.8594 11.6515C13.1291 10.2353 13.1186 9.10217 13.459 8.56851C13.6437 8.27902 13.9538 8.10529 14.2822 8.09293Z\" fill=\"currentColor\" stroke=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconEmojiSmilingFace;\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,EAAyE,EAAM,KAAK,CAAC,IAAU,CAC1G,OAAO,gBAAonC,EAApnC,IAAqB,EAAO,OAAO,0DAAyD,gBAAC,EAAD,CAAM,EAAE,8IAA8I,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,szBAAszB,KAAK,eAAe,OAAO,eAAc,CAAI,EAC5nC,EAEc",
  "debugId": "29E4E9BF8885506564756E2164756E21",
  "names": []
}