{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMegaphone/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 IconMegaphone: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconMegaphone\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.9961 1.63135V7.12608C20.7213 7.57012 21.9961 9.13622 21.9961 11.0001C21.9961 12.8639 20.7213 14.43 18.9961 14.874V20.3688L13.6354 18.6617C13.0049 20.0403 11.6137 21.0001 9.99609 21.0001C7.78695 21.0001 5.99609 19.2092 5.99609 17.0001V16.2211L1.99609 14.945V7.05516L5.99829 5.77827V5.76889L18.9961 1.63135ZM7.99609 16.867V17.0001C7.99609 18.1046 8.89152 19.0001 9.99609 19.0001C10.7161 19.0001 11.3489 18.6192 11.7013 18.0462L7.99609 16.867ZM19.9961 11.0001C19.9961 11.7403 19.5939 12.3867 18.9961 12.7325V9.26763C19.5939 9.61344 19.9961 10.2598 19.9961 11.0001ZM5.99829 7.87759V14.1225L3.99609 13.4837V8.51639L5.99829 7.87759Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconMegaphone;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAAixB,EAAjxB,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ynBAAynB,KAAK,eAAc,CAAI,EACzxB,EAEc",
  "debugId": "D6D17ADCD14A6BA464756E2164756E21",
  "names": []
}