{
  "version": 3,
  "sources": ["src/IconRewrite2/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 IconRewrite2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconRewrite2\"><Path d=\"M7.85355 2.14645C7.65829 1.95118 7.34171 1.95118 7.14645 2.14645C6.95118 2.34171 6.95118 2.65829 7.14645 2.85355L8.29289 4H5.6786C5.1367 3.99999 4.69963 3.99999 4.34569 4.02891C3.98126 4.05868 3.66117 4.12159 3.36502 4.27248C2.89462 4.51217 2.51217 4.89462 2.27248 5.36502C2.12159 5.66117 2.05868 5.98126 2.02891 6.34569C1.99999 6.69963 2 7.1367 2 7.6786V16.3214C2 16.8633 1.99999 17.3004 2.02891 17.6543C2.05868 18.0187 2.12159 18.3388 2.27248 18.635C2.51217 19.1054 2.89462 19.4878 3.36502 19.7275C3.66117 19.8784 3.98126 19.9413 4.34569 19.9711C4.69957 20 5.13655 20 5.67831 20H10.5C10.7761 20 11 19.7761 11 19.5C11 19.2239 10.7761 19 10.5 19H5.7C5.1317 19 4.73554 18.9996 4.42712 18.9744C4.12454 18.9497 3.95069 18.9036 3.81901 18.8365C3.53677 18.6927 3.3073 18.4632 3.16349 18.181C3.0964 18.0493 3.05031 17.8755 3.02559 17.5729C3.00039 17.2645 3 16.8683 3 16.3V7.7C3 7.1317 3.00039 6.73554 3.02559 6.42712C3.05031 6.12454 3.0964 5.95069 3.16349 5.81901C3.3073 5.53677 3.53677 5.3073 3.81901 5.16349C3.95069 5.0964 4.12454 5.05031 4.42712 5.02559C4.73554 5.00039 5.1317 5 5.7 5H8.29289L7.14645 6.14645C6.95118 6.34171 6.95118 6.65829 7.14645 6.85355C7.34171 7.04882 7.65829 7.04882 7.85355 6.85355L9.85355 4.85355C10.0488 4.65829 10.0488 4.34171 9.85355 4.14645L7.85355 2.14645Z\" fill=\"currentColor\"/><Path d=\"M21.5 11C21.7761 11 22 11.2239 22 11.5V16.3214C22 16.8633 22 17.3004 21.9711 17.6543C21.9413 18.0187 21.8784 18.3388 21.7275 18.635C21.4878 19.1054 21.1054 19.4878 20.635 19.7275C20.3388 19.8784 20.0187 19.9413 19.6543 19.9711C19.3004 20 18.8635 20 18.3217 20H15.7071L16.8536 21.1464C17.0488 21.3417 17.0488 21.6583 16.8536 21.8536C16.6583 22.0488 16.3417 22.0488 16.1464 21.8536L14.1464 19.8536C13.9512 19.6583 13.9512 19.3417 14.1464 19.1464L16.1464 17.1464C16.3417 16.9512 16.6583 16.9512 16.8536 17.1464C17.0488 17.3417 17.0488 17.6583 16.8536 17.8536L15.7071 19H18.3C18.8683 19 19.2645 18.9996 19.5729 18.9744C19.8755 18.9497 20.0493 18.9036 20.181 18.8365C20.4632 18.6927 20.6927 18.4632 20.8365 18.181C20.9036 18.0493 20.9497 17.8755 20.9744 17.5729C20.9996 17.2645 21 16.8683 21 16.3V11.5C21 11.2239 21.2239 11 21.5 11Z\" fill=\"currentColor\"/><Path d=\"M17.25 4.24995C17.9404 3.55959 19.0596 3.55959 19.75 4.24995C20.4404 4.9403 20.4404 6.05959 19.75 6.74995L19.1036 7.3964L16.6036 4.89639L17.25 4.24995Z\" fill=\"currentColor\"/><Path d=\"M15.8964 5.6035L18.3965 8.10351L12.2322 14.2678C11.7634 14.7366 11.1275 15 10.4645 15H9.5C9.22386 15 9 14.7762 9 14.5V13.5355C9 12.8724 9.26339 12.2366 9.73223 11.7677L15.8964 5.6035Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconRewrite2;\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,gBAA8lF,EAA9lF,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,qwCAAqwC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8zBAA8zB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0JAA0J,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0LAA0L,KAAK,eAAc,CAAI,CACtmF,EAEc",
  "debugId": "5EBD8BCAB801733364756E2164756E21",
  "names": []
}