{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBellActive/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 IconBellActive: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconBellActive\"><Path d=\"M16.584 19C15.8124 20.7659 14.0503 22 12 22C9.94968 22 8.18757 20.7659 7.41602 19H16.584Z\" fill=\"currentColor\"/><Path d=\"M12 2C16.2077 2.00002 19.7382 5.17265 20.1865 9.35645L21 17.5H3L3.81348 9.35645C4.26177 5.17264 7.79224 2 12 2Z\" fill=\"currentColor\"/><Path d=\"M18.5635 0.783203C20.8552 2.34538 22.7086 4.73187 23.374 7.58594L21.4268 8.04004C20.892 5.74635 19.3799 3.76079 17.4375 2.43652L18.001 1.61035L18.5635 0.783203Z\" fill=\"currentColor\"/><Path d=\"M6.56348 2.43652C4.6209 3.76075 3.10888 5.74546 2.57422 8.03906L0.625977 7.58594C1.29118 4.73173 3.14579 2.34535 5.4375 0.783203L6.56348 2.43652Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBellActive;\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,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAA+sB,EAA/sB,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,4FAA4F,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mKAAmK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oJAAoJ,KAAK,eAAc,CAAI,EACvtB,EAEc",
  "debugId": "D8307B3FE5EE1F6964756E2164756E21",
  "names": []
}