{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSparklesThree/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 IconSparklesThree: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconSparklesThree\"><Path d=\"M5 16C7.65571 16 9.33965 16.5872 10.3762 17.6238C11.4128 18.6603 12 20.3443 12 23H14C14 20.3443 14.5872 18.6603 15.6238 17.6238C16.6603 16.5872 18.3443 16 21 16V14C18.3443 14 16.6603 13.4128 15.6238 12.3762C14.5872 11.3397 14 9.65571 14 7H12C12 9.65571 11.4128 11.3397 10.3762 12.3762C9.33965 13.4128 7.65571 14 5 14V16Z\" fill=\"currentColor\"/><Path d=\"M2 9C3.15424 9 3.87122 9.25541 4.3079 9.69209C4.74459 10.1288 5 10.8458 5 12H6C6 10.8458 6.25541 10.1288 6.69209 9.69209C7.12878 9.25541 7.84576 9 9 9V8C7.84576 8 7.12878 7.74459 6.69209 7.30791C6.25541 6.87122 6 6.15424 6 5H5C5 6.15424 4.74459 6.87122 4.3079 7.30791C3.87122 7.74459 3.15424 8 2 8V9Z\" fill=\"currentColor\"/><Path d=\"M8 4C8.80702 4 9.27399 4.17902 9.54749 4.45251C9.82098 4.72601 10 5.19298 10 6H11C11 5.19298 11.179 4.72601 11.4525 4.45251C11.726 4.17902 12.193 4 13 4V3C12.193 3 11.726 2.82098 11.4525 2.54749C11.179 2.27399 11 1.80702 11 1H10C10 1.80702 9.82098 2.27399 9.54749 2.54749C9.27399 2.82098 8.80702 3 8 3V4Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSparklesThree;\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,EAAsE,EAAM,KAAK,CAAC,IAAU,CACvG,OAAO,gBAAqlC,EAArlC,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,mUAAmU,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+SAA+S,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mTAAmT,KAAK,eAAc,CAAI,EAC7lC,EAEc",
  "debugId": "7B5A9CC931BCD74D64756E2164756E21",
  "names": []
}