{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShimmer/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 IconShimmer: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconShimmer\"><Path d=\"M11.5 2.5C11.5 3.26097 11.5 3.64146 11.4363 3.9942C11.2797 4.86098 10.8413 5.65183 10.1893 6.24403C9.92396 6.48503 9.60131 6.68668 8.95601 7.09L6.04399 8.91C5.39869 9.31332 5.07604 9.51497 4.8107 9.75597C4.15867 10.3482 3.72034 11.139 3.56373 12.0058C3.5 12.3585 3.5 12.739 3.5 13.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M20.5 10.5C20.5 11.261 20.5 11.6415 20.4363 11.9942C20.2797 12.861 19.8413 13.6518 19.1893 14.244C18.924 14.485 18.6013 14.6867 17.956 15.09L15.044 16.91C14.3987 17.3133 14.076 17.515 13.8107 17.756C13.1587 18.3482 12.7203 19.139 12.5637 20.0058C12.5 20.3585 12.5 20.739 12.5 21.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M16 6.75C16 7.51097 16 7.89146 15.9363 8.2442C15.7797 9.11098 15.3413 9.90183 14.6893 10.494C14.424 10.735 14.1013 10.9367 13.456 11.34L10.544 13.16C9.89869 13.5633 9.57604 13.765 9.3107 14.006C8.65867 14.5982 8.22034 15.389 8.06373 16.2558C8 16.6085 8 16.989 8 17.75\" stroke=\"currentColor\" strokeLinecap=\"square\"/></CentralIconBase>;\n});\n\nexport default IconShimmer;\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,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAA6jC,EAA7jC,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,6RAA6R,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,2RAA2R,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,8QAA8Q,OAAO,eAAe,cAAc,SAAQ,CAAI,EACrkC,EAEc",
  "debugId": "CC96D415890E6ECA64756E2164756E21",
  "names": []
}