{
  "version": 3,
  "sources": ["src/IconArrowsShow/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 IconArrowsShow: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconArrowsShow\"><Path d=\"M12 14.0001C12.2761 14.0001 12.4999 14.2241 12.5 14.5001V20.2931L14.3965 18.3966C14.5917 18.2015 14.9083 18.2015 15.1035 18.3966C15.2987 18.5918 15.2987 18.9084 15.1035 19.1036L12.3535 21.8536C12.1583 22.0489 11.8417 22.0489 11.6465 21.8536L8.89648 19.1036C8.70133 18.9084 8.70126 18.5918 8.89648 18.3966C9.09172 18.2015 9.40828 18.2015 9.60352 18.3966L11.5 20.2931V14.5001C11.5001 14.2241 11.7239 14.0001 12 14.0001Z\" fill=\"currentColor\"/><Path d=\"M7.60059 8.00989C7.82859 8.05633 7.9999 8.25844 8 8.50013C8 8.7419 7.82863 8.9439 7.60059 8.99036L7.5 9.00013H4.5C3.67164 9.00013 3.00011 9.6718 3 10.5001V13.5001L3.00781 13.6534C3.08461 14.4099 3.72334 15.0001 4.5 15.0001H7.5C7.77607 15.0001 7.99989 15.2241 8 15.5001C8 15.7763 7.77614 16.0001 7.5 16.0001H4.5C3.20566 16.0001 2.14082 15.0165 2.0127 13.756L2 13.5001V10.5001C2.00011 9.11951 3.11936 8.00013 4.5 8.00013H7.5L7.60059 8.00989Z\" fill=\"currentColor\"/><Path d=\"M19.5 8.00013C20.8806 8.00013 21.9999 9.11951 22 10.5001V13.5001C22 14.8808 20.8807 16.0001 19.5 16.0001H16.5C16.2239 16.0001 16 15.7763 16 15.5001C16.0001 15.2241 16.2239 15.0001 16.5 15.0001H19.5C20.3284 15.0001 21 14.3286 21 13.5001V10.5001C20.9999 9.6718 20.3284 9.00013 19.5 9.00013H16.5C16.2239 9.00013 16 8.77627 16 8.50013C16.0001 8.22408 16.2239 8.00013 16.5 8.00013H19.5Z\" fill=\"currentColor\"/><Path d=\"M11.7246 2.08216C11.9186 1.95409 12.1827 1.97587 12.3535 2.14661L15.1035 4.89661C15.2987 5.09184 15.2987 5.40837 15.1035 5.60364C14.9083 5.79891 14.5917 5.79891 14.3965 5.60364L12.5 3.70716V9.50013C12.5 9.77627 12.2761 10.0001 12 10.0001C11.7239 10.0001 11.5 9.77627 11.5 9.50013V3.70716L9.60352 5.60364C9.40825 5.79891 9.09175 5.79891 8.89648 5.60364C8.70133 5.40837 8.70126 5.09184 8.89648 4.89661L11.6465 2.14661L11.7246 2.08216Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconArrowsShow;\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,gBAA01D,EAA11D,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,oaAAoa,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0bAA0b,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gYAAgY,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mbAAmb,KAAK,eAAc,CAAI,CACl2D,EAEc",
  "debugId": "BE4E95F100892A4B64756E2164756E21",
  "names": []
}