{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMagicHands/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 IconMagicHands: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconMagicHands\"><Path d=\"M11.9988 5C9.05327 5 6.53035 6.8196 5.49735 9.39977L3.64062 8.6564C4.96712 5.34317 8.2081 3 11.9988 3C15.7894 3 19.0304 5.34317 20.3569 8.6564L18.5002 9.39977C17.4672 6.8196 14.9443 5 11.9988 5Z\" fill=\"currentColor\"/><Path d=\"M12.0017 8C10.3192 8 8.877 9.03908 8.28641 10.5142L6.42969 9.77087C7.31378 7.56265 9.47402 6 12.0017 6C14.5293 6 16.6896 7.56265 17.5736 9.77087L15.7169 10.5142C15.1263 9.03908 13.6841 8 12.0017 8Z\" fill=\"currentColor\"/><Path d=\"M3.75651 11.5279C2.06983 12.1418 1.20017 14.0068 1.81407 15.6935L2.41261 17.338C3.16818 19.4139 5.46355 20.4842 7.53946 19.7287C9.61537 18.9731 10.6857 16.6777 9.93015 14.6018L9.24611 12.7224L7.82767 13.2387C7.13376 11.7054 5.36414 10.9428 3.75651 11.5279Z\" fill=\"currentColor\"/><Path d=\"M20.2441 11.5279C21.9308 12.1418 22.8004 14.0068 22.1865 15.6935L21.588 17.338C20.8324 19.4139 18.537 20.4842 16.4611 19.7287C14.3852 18.9731 13.3149 16.6777 14.0704 14.6018L14.7545 12.7224L16.1729 13.2387C16.8668 11.7054 18.6364 10.9428 20.2441 11.5279Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconMagicHands;\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,gBAA2lC,EAA3lC,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,qMAAqM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wMAAwM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mQAAmQ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iQAAiQ,KAAK,eAAc,CAAI,EACnmC,EAEc",
  "debugId": "3F14888CD6DADB4E64756E2164756E21",
  "names": []
}