{
  "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-outlined-radius-0-stroke-1-IconMegaphone\"><Path d=\"M18.4961 2.5H18.9961V1.82856L18.3528 2.02097L18.4961 2.5ZM18.4961 19.5L18.3528 19.979L18.9961 20.1714V19.5H18.4961ZM2.49609 14.7143H1.99609V15.0866L2.35281 15.1933L2.49609 14.7143ZM2.49609 7.28571L2.35281 6.80668L1.99609 6.91338V7.28571H2.49609ZM12.7968 18.6666L12.9634 18.1952L12.0206 17.862L11.854 18.3334L12.7968 18.6666ZM18.4961 14.5C20.4291 14.5 21.9961 12.933 21.9961 11H20.9961C20.9961 12.3807 19.8768 13.5 18.4961 13.5V14.5ZM18.4961 8.5C19.8768 8.5 20.9961 9.61929 20.9961 11H21.9961C21.9961 9.067 20.4291 7.5 18.4961 7.5V8.5ZM17.9961 2.5V19.5H18.9961V2.5H17.9961ZM18.6394 19.021L2.63938 14.2353L2.35281 15.1933L18.3528 19.979L18.6394 19.021ZM18.3528 2.02097L2.35281 6.80668L2.63938 7.76474L18.6394 2.97903L18.3528 2.02097ZM2.99609 14.7143V7.28571H1.99609V14.7143H2.99609ZM9.49609 20C8.11538 20 6.99609 18.8807 6.99609 17.5H5.99609C5.99609 19.433 7.5631 21 9.49609 21V20ZM11.854 18.3334C11.5105 19.305 10.5838 20 9.49609 20V21C11.0208 21 12.3166 20.0253 12.7968 18.6666L11.854 18.3334ZM6.99609 17.5V16H5.99609V17.5H6.99609ZM5.99829 6.25V15.75H6.99829V6.25H5.99829Z\" 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,gBAAuqC,EAAvqC,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,mjCAAmjC,KAAK,eAAc,CAAI,EAC/qC,EAEc",
  "debugId": "A71E952F0DC2CA5264756E2164756E21",
  "names": []
}