{
  "version": 3,
  "sources": ["src/IconIncrease/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconIncrease: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconIncrease\"><Path d=\"M16.1464 16.1466C16.3416 15.9515 16.6582 15.9515 16.8534 16.1466L19.8534 19.1466C20.0487 19.3418 20.0486 19.6584 19.8534 19.8536L16.8534 22.8536C16.6582 23.0489 16.3417 23.0489 16.1464 22.8536C15.9512 22.6584 15.9512 22.3418 16.1464 22.1466L18.2929 20.0001H8.49992C8.22378 20.0001 7.99992 19.7763 7.99992 19.5001C8.00003 19.2241 8.22385 19.0001 8.49992 19.0001H18.2929L16.1464 16.8536C15.9512 16.6584 15.9512 16.3418 16.1464 16.1466Z\" fill=\"currentColor\"/><Path d=\"M4.22453 4.08216C4.41856 3.9541 4.68261 3.97586 4.85344 4.14661L7.85344 7.14661C8.04866 7.34183 8.04857 7.65837 7.85344 7.85364C7.65817 8.0489 7.34167 8.0489 7.1464 7.85364L4.99992 5.70716V15.5001C4.99992 15.7763 4.77604 16.0001 4.49992 16.0001C4.22378 16.0001 3.99992 15.7763 3.99992 15.5001V5.70716L1.85344 7.85364C1.65817 8.0489 1.34167 8.0489 1.1464 7.85364C0.951227 7.65837 0.95117 7.34184 1.1464 7.14661L4.1464 4.14661L4.22453 4.08216Z\" fill=\"currentColor\"/><Path d=\"M19.4999 10.0001C19.776 10.0001 19.9998 10.2241 19.9999 10.5001V13.5001C19.9999 13.7763 19.776 14.0001 19.4999 14.0001C19.2238 14.0001 18.9999 13.7763 18.9999 13.5001V10.5001C19 10.2241 19.2238 10.0001 19.4999 10.0001Z\" fill=\"currentColor\"/><Path d=\"M17.4999 4.00013C18.8805 4.00015 19.9998 5.11952 19.9999 6.50013V7.50013C19.9999 7.77625 19.776 8.0001 19.4999 8.00013C19.2238 8.00013 18.9999 7.77627 18.9999 7.50013V6.50013C18.9998 5.67181 18.3283 5.00015 17.4999 5.00013H16.4999C16.2238 5.00013 15.9999 4.77627 15.9999 4.50013C16 4.22408 16.2238 4.00013 16.4999 4.00013H17.4999Z\" fill=\"currentColor\"/><Path d=\"M13.4999 4.00013C13.776 4.00015 13.9998 4.22409 13.9999 4.50013C13.9999 4.77625 13.776 5.0001 13.4999 5.00013H10.4999C10.2238 5.00013 9.99992 4.77627 9.99992 4.50013C10 4.22408 10.2238 4.00013 10.4999 4.00013H13.4999Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconIncrease;\n",
    "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\ntype Props = CentralIconBaseProps;\n\nconst ModernCentralIconBase: React.FC<Props> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: Props },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return <CentralIconSvg {...this.props.iconProps} instanceId={this.state.instanceId} />;\n        }\n      };\n\nexport const CentralIconBase: React.FC<Props> = (props) =>\n  LegacyCentralIconBase ? (\n    <LegacyCentralIconBase iconProps={props} />\n  ) : (\n    <ModernCentralIconBase {...props} />\n  );\n\nconst CentralIconSvg: FC<CentralIconBaseProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\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={uniqueMaskId}\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(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAU1B,IAAM,EAAyC,CAAC,IAAU,CACxD,IAAM,EAAa,EAAM,MAAM,EAC/B,OAAO,gBAAC,EAAD,IAAoB,EAAO,WAAY,EAAY,GAGxD,EAAe,EAIb,EACJ,OAAO,EAAM,QAAU,WACnB,OACA,cAAc,EAAM,SAGlB,CACA,MAAiC,CAAC,EAElC,iBAAiB,EAAG,CAElB,KAAK,SAAS,CAAE,WAAY,UAAU,EAAE,GAAe,CAAC,EAG1D,MAAM,EAAG,CACP,OAAO,gBAAC,EAAD,IAAoB,KAAK,MAAM,UAAW,WAAY,KAAK,MAAM,WAAY,EAExF,EAEO,EAAmC,CAAC,IAC/C,EACE,gBAAC,EAAD,CAAuB,UAAW,EAAO,EAEzC,gBAAC,EAAD,IAA2B,EAAO,EAGhC,EAAqE,EACzE,WACA,OAAO,GACP,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,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,GDrFN,eAAS,yBAEF,IAAM,EAAiE,EAAM,KAAK,CAAC,IACjF,gBAA01D,EAA11D,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,obAAob,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4bAA4b,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6NAA6N,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6UAA6U,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4NAA4N,KAAK,eAAc,CAAI,CACl2D,EAEc",
  "debugId": "BEB0ED44635797F364756E2164756E21",
  "names": []
}