{
  "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-outlined-radius-0-stroke-1-IconHandBell\"><Path d=\"M11.9689 20.4479L10.9168 21.5L2.5 13.0832L3.5521 12.0311H5.6563L7.7605 9.92689C9.11897 8.56842 11.1352 8.26862 12.784 9.02747C13.2509 9.24238 13.6884 9.54218 14.0731 9.92689C14.4578 10.3116 14.7576 10.7491 14.9725 11.216C15.7314 12.8648 15.4316 14.881 14.0731 16.2395L11.9689 18.3437V20.4479Z\" stroke=\"currentColor\"/><Path d=\"M4.5 15.2639C3.88625 15.8132 3.5 16.6115 3.5 17.5C3.5 19.1569 4.84315 20.5 6.5 20.5C7.3885 20.5 8.18678 20.1138 8.7361 19.5\" stroke=\"currentColor\"/><Path d=\"M15.2515 11L20.547 6.90028C21.7174 5.99412 21.8269 4.26643 20.7802 3.21975C19.7336 2.17307 18.0059 2.28257 17.0997 3.45303L13 8.7485\" stroke=\"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,gBAA+tB,EAA/tB,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,uSAAuS,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8HAA8H,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uIAAuI,OAAO,eAAc,CAAI,EACvuB,EAEc",
  "debugId": "00FCE669F5002CE364756E2164756E21",
  "names": []
}