{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSparklesTwo2/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 IconSparklesTwo2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconSparklesTwo2\"><Path d=\"M23 16.5C21.2123 16.5 20.1534 16.1038 19.5248 15.4752C18.8962 14.8466 18.5 13.7877 18.5 12H16.5C16.5 13.7877 16.1038 14.8466 15.4752 15.4752C14.8466 16.1038 13.7877 16.5 12 16.5V18.5C13.7877 18.5 14.8466 18.8962 15.4752 19.5248C16.1038 20.1534 16.5 21.2123 16.5 23H18.5C18.5 21.2123 18.8962 20.1534 19.5248 19.5248C20.1534 18.8962 21.2123 18.5 23 18.5V16.5Z\" fill=\"currentColor\"/><Path d=\"M17 8C14.3443 8 12.6603 7.4128 11.6238 6.37623C10.5872 5.33965 10 3.65571 10 1H8C8 3.65571 7.4128 5.33965 6.37623 6.37623C5.33965 7.4128 3.65571 8 1 8V10C3.65571 10 5.33965 10.5872 6.37623 11.6238C7.4128 12.6603 8 14.3443 8 17H10C10 14.3443 10.5872 12.6603 11.6238 11.6238C12.6603 10.5872 14.3443 10 17 10V8Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSparklesTwo2;\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,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAAizB,EAAjzB,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,wWAAwW,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uTAAuT,KAAK,eAAc,CAAI,EACzzB,EAEc",
  "debugId": "2CE47BCC81CD807A64756E2164756E21",
  "names": []
}