{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMicrophoneSparkle/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 IconMicrophoneSparkle: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconMicrophoneSparkle\"><Path d=\"M16.4 3H15.6L14.6 5.6L12 6.6V7.4L14.6 8.4L15.6 11H16.4L17.4 8.4L20 7.4V6.6L17.4 5.6L16.4 3Z\" fill=\"currentColor\"/><Path d=\"M20.3691 14.7051L19.8252 15.5439C18.7016 17.2754 16.5534 19.5759 13 19.9463V22H11V19.9463C7.44688 19.5757 5.29937 17.2753 4.17578 15.5439L3.63184 14.7051L5.30957 13.6172L5.85352 14.4561C6.89315 16.0579 8.80036 17.9999 12 18C15.1999 17.9999 17.1079 16.058 18.1475 14.4561L18.6914 13.6172L20.3691 14.7051Z\" fill=\"currentColor\"/><Path d=\"M12 2C12.6058 2.00003 13.1863 2.10828 13.7236 2.30566L13.0518 4.05176L10 5.22656V8.77344L13.0518 9.94727L14.2266 13H16.583C15.8113 14.7657 14.0501 15.9999 12 16C9.23872 15.9998 7 13.7613 7 11V7C7 4.23868 9.23872 2.00017 12 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconMicrophoneSparkle;\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,EAA0E,EAAM,KAAK,CAAC,IAAU,CAC3G,OAAO,gBAAwyB,EAAxyB,IAAqB,EAAO,OAAO,yDAAwD,gBAAC,EAAD,CAAM,EAAE,8FAA8F,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kTAAkT,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oOAAoO,KAAK,eAAc,CAAI,EAChzB,EAEc",
  "debugId": "B3DEF47D04039E0064756E2164756E21",
  "names": []
}