{
  "version": 3,
  "sources": ["src/IconVectorAnchorPointMirrored/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 IconVectorAnchorPointMirrored: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconVectorAnchorPointMirrored\"><Path d=\"M1.64643 5.85346C1.84169 5.65823 2.15821 5.65821 2.35346 5.85346L3.49994 6.99994H8.99994C9.27605 6.99998 9.49994 7.22383 9.49994 7.49994C9.4999 7.77603 9.27603 7.9999 8.99994 7.99994H3.49994L2.35346 9.14643C2.15823 9.34161 1.84169 9.34156 1.64643 9.14643L0.353459 7.85346C0.158209 7.65821 0.158235 7.34169 0.353459 7.14643L1.64643 5.85346Z\" fill=\"currentColor\"/><Path d=\"M21.6464 5.85346C21.8417 5.65823 22.1582 5.65821 22.3535 5.85346L23.6464 7.14643C23.8416 7.34169 23.8416 7.65823 23.6464 7.85346L22.3535 9.14643C22.1582 9.34162 21.8417 9.34156 21.6464 9.14643L20.4999 7.99994H14.9999C14.7238 7.99994 14.5 7.77605 14.4999 7.49994C14.4999 7.2238 14.7238 6.99994 14.9999 6.99994H20.4999L21.6464 5.85346Z\" fill=\"currentColor\"/><Path d=\"M11.9995 4C13.9324 4 15.4995 5.567 15.4995 7.5C15.4995 7.62608 15.491 7.75041 15.478 7.87305C17.3057 8.74922 21.7429 11.4834 21.9887 17.4795C22 17.7553 21.7859 17.9885 21.5102 18C21.2345 18.0111 21.001 17.7963 20.9897 17.5205C20.7741 12.2615 17.0092 9.75814 15.2231 8.8623C14.6917 10.1183 13.449 11 11.9995 11C10.5502 10.9998 9.30645 10.1189 8.77484 8.86328C6.98792 9.76001 3.22572 12.2635 3.01019 17.5205C2.99888 17.7964 2.76557 18.0113 2.48968 18C2.21378 17.9887 1.99888 17.7554 2.01019 17.4795C2.25596 11.4849 6.69131 8.74996 8.51996 7.87305C8.50696 7.75045 8.49945 7.62605 8.49945 7.5C8.49945 5.56715 10.0667 4.00023 11.9995 4Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconVectorAnchorPointMirrored;\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,EAAkF,EAAM,KAAK,CAAC,IAClG,gBAA29C,EAA39C,IAAqB,EAAO,OAAO,gEAA+D,gBAAC,EAAD,CAAM,EAAE,sVAAsV,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gVAAgV,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0nBAA0nB,KAAK,eAAc,CAAI,CACn+C,EAEc",
  "debugId": "1D76EE229CF93B7B64756E2164756E21",
  "names": []
}