{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMouseScrollDown/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 IconMouseScrollDown: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconMouseScrollDown\"><Path d=\"M15.2774 20.916L15.6934 20.6387L15.1387 19.8066L14.7226 20.084L15.2774 20.916ZM12 22.5L11.7227 22.916L12 23.1009L12.2773 22.916L12 22.5ZM9.27735 20.084L8.86133 19.8066L8.30662 20.6387L8.72265 20.916L9.27735 20.084ZM12.5 5.5V5H11.5V5.5H12.5ZM11.5 8.5V9H12.5V8.5H11.5ZM14.7226 20.084L11.7227 22.084L12.2773 22.916L15.2774 20.916L14.7226 20.084ZM12.2773 22.084L9.27735 20.084L8.72265 20.916L11.7227 22.916L12.2773 22.084ZM17 7V12H18V7H17ZM7 12V7H6V12H7ZM12 17C9.23858 17 7 14.7614 7 12H6C6 15.3137 8.68629 18 12 18V17ZM17 12C17 14.7614 14.7614 17 12 17V18C15.3137 18 18 15.3137 18 12H17ZM12 2C14.7614 2 17 4.23858 17 7H18C18 3.68629 15.3137 1 12 1V2ZM12 1C8.68629 1 6 3.68629 6 7H7C7 4.23858 9.23858 2 12 2V1ZM11.5 5.5V8.5H12.5V5.5H11.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconMouseScrollDown;\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,EAAwE,EAAM,KAAK,CAAC,IAAU,CACzG,OAAO,gBAA21B,EAA31B,IAAqB,EAAO,OAAO,yDAAwD,gBAAC,EAAD,CAAM,EAAE,iuBAAiuB,KAAK,eAAc,CAAI,EACn2B,EAEc",
  "debugId": "FEEC77A826C7500764756E2164756E21",
  "names": []
}