{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSquareChecklistBell/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 IconSquareChecklistBell: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconSquareChecklistBell\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 3V21H12V17C12 13.6863 14.6863 11 18 11C19.0929 11 20.1175 11.2922 21 11.8027V3H3ZM10.9396 7.55226L7.90036 11.6046L5.1562 9.77512L6.2656 8.11102L7.43555 8.89098L9.33959 6.35226L10.9396 7.55226ZM13.0579 8.00002H17.0579V10H13.0579V8.00002ZM10.9396 13.5534L7.90036 17.6057L5.1562 15.7762L6.2656 14.1121L7.43555 14.8921L9.33959 12.3534L10.9396 13.5534Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M14 17C14 14.7909 15.7909 13 18 13C20.2091 13 22 14.7909 22 17V21H14V17ZM18 15C16.8954 15 16 15.8954 16 17V19H20V17C20 15.8954 19.1046 15 18 15Z\" fill=\"currentColor\"/><Path d=\"M18 22C19.1046 22 20 21.1046 20 20H16C16 21.1046 16.8954 22 18 22Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSquareChecklistBell;\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,EAA4E,EAAM,KAAK,CAAC,IAAU,CAC7G,OAAO,gBAA2zB,EAA3zB,IAAqB,EAAO,OAAO,2DAA0D,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iWAAiW,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mJAAmJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qEAAqE,KAAK,eAAc,CAAI,EACn0B,EAEc",
  "debugId": "E0B7DBF48632764864756E2164756E21",
  "names": []
}