{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconHandBell/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 IconHandBell: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconHandBell\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.611 4.38899C19.0454 3.82336 18.1117 3.88253 17.622 4.51506L14.2117 8.92008C14.3709 9.04591 14.5244 9.1822 14.6711 9.32891C14.8178 9.47562 14.9541 9.62908 15.0799 9.78832L19.485 6.37798C20.1175 5.88829 20.1767 4.95463 19.611 4.38899ZM16.0054 11.6012L20.7093 7.95943C22.2945 6.73219 22.4428 4.39233 21.0252 2.97478C19.6077 1.55723 17.2678 1.70553 16.0406 3.29071L12.3988 7.99466C10.6372 7.49742 8.66454 7.9409 7.27653 9.32891L5.57596 11.0295H3.58251L1.58578 13.0262L3.81941 15.2598C2.65944 16.6318 2.72612 18.6872 4.01945 19.9806C5.31279 21.2739 7.36827 21.3406 8.74019 20.1806L10.9738 22.4142L12.9705 20.4175V18.424L14.6711 16.7235C16.0591 15.3355 16.5026 13.3628 16.0054 11.6012ZM7.31402 18.7544L5.24558 16.686C4.85984 17.2655 4.92254 18.0552 5.43367 18.5663C5.9448 19.0775 6.73454 19.1402 7.31402 18.7544Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconHandBell;\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,EAAiE,EAAM,KAAK,CAAC,IAAU,CAClG,OAAO,gBAAo8B,EAAp8B,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6yBAA6yB,KAAK,eAAc,CAAI,EAC58B,EAEc",
  "debugId": "70EA45D65D10C5F264756E2164756E21",
  "names": []
}