{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMouseScrollUp/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 IconMouseScrollUp: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconMouseScrollUp\"><Path d=\"M14.7226 4.16603L15.1387 4.44338L15.6934 3.61132L15.2774 3.33397L14.7226 4.16603ZM12 1.75L12.2773 1.33397L12 1.14907L11.7227 1.33397L12 1.75ZM8.72265 3.33397L8.30662 3.61132L8.86133 4.44338L9.27735 4.16603L8.72265 3.33397ZM12.5 10.5V10H11.5V10.5H12.5ZM11.5 13.5V14H12.5V13.5H11.5ZM15.2774 3.33397L12.2773 1.33397L11.7227 2.16603L14.7226 4.16603L15.2774 3.33397ZM11.7227 1.33397L8.72265 3.33397L9.27735 4.16603L12.2773 2.16603L11.7227 1.33397ZM17 12V17H18V12H17ZM7 17V12H6V17H7ZM12 22C9.23858 22 7 19.7614 7 17H6C6 20.3137 8.68629 23 12 23V22ZM17 17C17 19.7614 14.7614 22 12 22V23C15.3137 23 18 20.3137 18 17H17ZM12 7C14.7614 7 17 9.23858 17 12H18C18 8.68629 15.3137 6 12 6V7ZM12 6C8.68629 6 6 8.68629 6 12H7C7 9.23858 9.23858 7 12 7V6ZM11.5 10.5V13.5H12.5V10.5H11.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconMouseScrollUp;\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,EAAsE,EAAM,KAAK,CAAC,IAAU,CACvG,OAAO,gBAAy3B,EAAz3B,IAAqB,EAAO,OAAO,uDAAsD,gBAAC,EAAD,CAAM,EAAE,iwBAAiwB,KAAK,eAAc,CAAI,EACj4B,EAEc",
  "debugId": "FD3C8156C1C9B9CB64756E2164756E21",
  "names": []
}