{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCursorClick/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 IconCursorClick: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconCursorClick\"><Path d=\"M12 5.5V2H10V5.5H12Z\" fill=\"currentColor\"/><Path d=\"M15.5956 7.8178L18.0705 5.34292L16.6562 3.92871L14.1814 6.40358L15.5956 7.8178Z\" fill=\"currentColor\"/><Path d=\"M7.81851 15.5959L5.34364 18.0707L3.92942 16.6565L6.4043 14.1816L7.81851 15.5959Z\" fill=\"currentColor\"/><Path d=\"M2 12H5.5V10H2V12Z\" fill=\"currentColor\"/><Path d=\"M6.40415 7.81851L3.92927 5.34364L5.34349 3.92942L7.81836 6.4043L6.40415 7.81851Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M23.2362 14.2818L8.77148 8.77148L14.2818 23.2362L17.7258 17.7258L23.2362 14.2818ZM14.7184 18.7641L12.2287 12.2287L18.7641 14.7184L16.2744 16.2744L14.7184 18.7641Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCursorClick;\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,EAAoE,EAAM,KAAK,CAAC,IAAU,CACrG,OAAO,gBAAovB,EAApvB,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,uBAAuB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kFAAkF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mFAAmF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qBAAqB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mFAAmF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qKAAqK,KAAK,eAAc,CAAI,EAC5vB,EAEc",
  "debugId": "CF42780CA5DB6E2064756E2164756E21",
  "names": []
}