{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBroomSparkle/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 IconBroomSparkle: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconBroomSparkle\"><Path d=\"M4.33333 7.33351L5.5 5.00018L6.66667 7.33351L9 8.50018L6.66667 9.66684L5.5 12.0002L4.33333 9.66684L2 8.50018L4.33333 7.33351Z\" fill=\"currentColor\"/><Path d=\"M9.66667 3.66684L10.5 2.00018L11.3333 3.66684L13 4.50018L11.3333 5.33351L10.5 7.00018L9.66667 5.33351L8 4.50018L9.66667 3.66684Z\" fill=\"currentColor\"/><Path d=\"M16.2118 11.6934L21.3643 2.62471L19.6253 1.63672L14.3057 10.9996L13.7247 10.7882C11.5982 10.0142 9.50034 11.2064 8.44386 12.8684C7.56856 14.2454 6.40339 15.1966 4.9461 16.1681L3.39844 17.1999L6.76576 18.6179L10.0002 17L8.76935 19.4617L15.2382 22.1858L15.714 21.6998C17.6004 19.7732 18.6225 18.046 18.9585 15.6529C19.2114 13.8511 17.9954 12.3426 16.4747 11.7891L16.2118 11.6934Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBroomSparkle;\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,gBAA8yB,EAA9yB,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,gIAAgI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mIAAmI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4XAA4X,KAAK,eAAc,CAAI,EACtzB,EAEc",
  "debugId": "9FA99E28159F045064756E2164756E21",
  "names": []
}