{
  "version": 3,
  "sources": ["src/IconTranslate/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 IconTranslate: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconTranslate\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8.00011 3C8.27625 3 8.50011 3.22386 8.50011 3.5V5H12.5001C12.7763 5 13.0001 5.22386 13.0001 5.5C13.0001 5.77614 12.7763 6 12.5001 6H11.9683C11.5922 8.43184 10.7727 10.3845 9.41063 11.8783C9.22166 12.0856 9.02301 12.2831 8.81461 12.4713C9.8438 13.1517 11.0993 13.6625 12.6129 14.0129C12.8819 14.0752 13.0495 14.3438 12.9872 14.6128C12.9249 14.8818 12.6564 15.0494 12.3873 14.9871C10.6578 14.5867 9.19793 13.9769 7.99933 13.1248C6.80101 13.9767 5.34171 14.5866 3.61296 14.9871C3.34395 15.0494 3.07534 14.8819 3.01301 14.6129C2.95069 14.3438 3.11824 14.0752 3.38726 14.0129C4.90006 13.6624 6.15509 13.1517 7.18406 12.4713C6.97576 12.2833 6.77721 12.0858 6.58835 11.8786C5.22631 10.3848 4.40723 8.43204 4.03188 6H3.50011C3.22397 6 3.00011 5.77614 3.00011 5.5C3.00011 5.22386 3.22397 5 3.50011 5H7.50011V3.5C7.50011 3.22386 7.72397 3 8.00011 3ZM5.04444 6C5.40833 8.22033 6.15901 9.92351 7.32731 11.2049C7.53653 11.4343 7.76033 11.6516 7.99932 11.8568C8.23842 11.6515 8.46235 11.4341 8.67167 11.2046C9.84003 9.92314 10.5911 8.22004 10.9557 6H5.04444ZM15.6214 10.9477C16.1409 9.73553 17.8593 9.73553 18.3788 10.9477L21.9596 19.303C22.0684 19.5568 21.9508 19.8508 21.697 19.9596C21.4432 20.0683 21.1493 19.9508 21.0405 19.6969L20.3132 18H13.687L12.9597 19.6969C12.8509 19.9508 12.557 20.0683 12.3032 19.9596C12.0493 19.8508 11.9318 19.5568 12.0405 19.303L15.6214 10.9477ZM14.1155 17H19.8846L17.4597 11.3416C17.2865 10.9376 16.7137 10.9376 16.5405 11.3416L14.1155 17Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconTranslate;\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,EAAkE,EAAM,KAAK,CAAC,IAClF,gBAA6kD,EAA7kD,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,s7CAAs7C,KAAK,eAAc,CAAI,CACrlD,EAEc",
  "debugId": "129E11B26CBF63EC64756E2164756E21",
  "names": []
}