{
  "version": 3,
  "sources": ["src/IconArrowsHide/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 IconArrowsHide: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconArrowsHide\"><Path d=\"M11.7246 13.082C11.9187 12.9539 12.1827 12.9756 12.3535 13.1465L15.1035 15.8965C15.2988 16.0917 15.2988 16.4083 15.1035 16.6035C14.9083 16.7988 14.5917 16.7988 14.3965 16.6035L12.5 14.707V20.5C12.5 20.7761 12.2761 21 12 21C11.7239 21 11.5 20.7761 11.5 20.5V14.707L9.60352 16.6035C9.40825 16.7988 9.09175 16.7988 8.89648 16.6035C8.70122 16.4083 8.70122 16.0917 8.89648 15.8965L11.6465 13.1465L11.7246 13.082Z\" fill=\"currentColor\"/><Path d=\"M7.60059 4.00977C7.82865 4.05622 8 4.25822 8 4.5C8 4.74178 7.82865 4.94378 7.60059 4.99023L7.5 5H4.5C3.67157 5 3 5.67157 3 6.5V17.5L3.00781 17.6533C3.08461 18.4097 3.72334 19 4.5 19H7.5C7.77614 19 8 19.2239 8 19.5C8 19.7761 7.77614 20 7.5 20H4.5C3.20566 20 2.14082 19.0164 2.0127 17.7559L2 17.5V6.5C2 5.11929 3.11929 4 4.5 4H7.5L7.60059 4.00977Z\" fill=\"currentColor\"/><Path d=\"M19.5 4C20.8807 4 22 5.11929 22 6.5V17.5C22 18.8807 20.8807 20 19.5 20H16.5C16.2239 20 16 19.7761 16 19.5C16 19.2239 16.2239 19 16.5 19H19.5C20.3284 19 21 18.3284 21 17.5V6.5C21 5.67157 20.3284 5 19.5 5H16.5C16.2239 5 16 4.77614 16 4.5C16 4.22386 16.2239 4 16.5 4H19.5Z\" fill=\"currentColor\"/><Path d=\"M12 3C12.2761 3 12.5 3.22386 12.5 3.5V9.29297L14.3965 7.39648C14.5917 7.20122 14.9083 7.20122 15.1035 7.39648C15.2988 7.59175 15.2988 7.90825 15.1035 8.10352L12.3535 10.8535C12.1583 11.0488 11.8417 11.0488 11.6465 10.8535L8.89648 8.10352C8.70122 7.90825 8.70122 7.59175 8.89648 7.39648C9.09175 7.20122 9.40825 7.20122 9.60352 7.39648L11.5 9.29297V3.5C11.5 3.22386 11.7239 3 12 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconArrowsHide;\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,EAAmE,EAAM,KAAK,CAAC,IACnF,gBAA6kD,EAA7kD,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,0ZAA0Z,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4VAA4V,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gRAAgR,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8XAA8X,KAAK,eAAc,CAAI,CACrlD,EAEc",
  "debugId": "A461691924C68FEB64756E2164756E21",
  "names": []
}