{
  "version": 3,
  "sources": ["src/IconPan/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 IconPan: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconPan\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M23.0768 10.6642L2.68127 15.6915C2.55224 15.7234 2.44019 15.8051 2.3717 15.919C2.30334 16.033 2.28355 16.17 2.31604 16.2989L2.69201 17.7911C3.17642 19.7101 5.1392 20.8687 7.06897 20.3936L14.1158 18.6583C16.0478 18.1823 17.2325 16.2438 16.7477 14.3224L16.4938 13.3155L23.316 11.6349C23.5839 11.5686 23.7472 11.2973 23.6813 11.0294C23.615 10.7617 23.3446 10.5984 23.0768 10.6642Z\" fill=\"currentColor\"/><Path d=\"M3.30529 9.1036C3.08633 8.93578 2.77223 8.97671 2.60412 9.1954C2.4362 9.41435 2.47724 9.72843 2.69592 9.89657L4.00061 10.8966C4.21956 11.0644 4.53269 11.0234 4.7008 10.8048C4.86873 10.5857 4.82788 10.2717 4.609 10.1036L3.30529 9.1036Z\" fill=\"currentColor\"/><Path d=\"M8.75061 8.25009C8.33648 8.25013 8.00069 8.58597 8.00061 9.00009C8.00061 9.41428 8.33643 9.75005 8.75061 9.75009C9.16482 9.75009 9.50061 9.4143 9.50061 9.00009C9.50052 8.58595 9.16477 8.25009 8.75061 8.25009Z\" fill=\"currentColor\"/><Path d=\"M13.2506 6.25009C12.8365 6.25013 12.5007 6.58597 12.5006 7.00009C12.5006 7.41428 12.8364 7.75005 13.2506 7.75009C13.6648 7.75009 14.0006 7.4143 14.0006 7.00009C14.0005 6.58595 13.6648 6.25009 13.2506 6.25009Z\" fill=\"currentColor\"/><Path d=\"M4.25061 5.00009C3.83648 5.00013 3.50069 5.33597 3.50061 5.75009C3.50061 6.16428 3.83643 6.50005 4.25061 6.50009C4.66482 6.50009 5.00061 6.1643 5.00061 5.75009C5.00052 5.33595 4.66477 5.00009 4.25061 5.00009Z\" fill=\"currentColor\"/><Path d=\"M9.72424 3.05282C9.4773 2.92944 9.17685 3.02958 9.05334 3.27646L8.30334 4.77646C8.17987 5.02341 8.28007 5.32382 8.52697 5.44735C8.77396 5.57085 9.07438 5.47071 9.19787 5.22372L9.94787 3.72372C10.0713 3.47675 9.9712 3.1763 9.72424 3.05282Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPan;\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,EAA4D,EAAM,KAAK,CAAC,IAC5E,gBAAqvD,EAArvD,IAAqB,EAAO,OAAO,0CAAyC,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4XAA4X,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6OAA6O,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mNAAmN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mNAAmN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mNAAmN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iPAAiP,KAAK,eAAc,CAAI,CAC7vD,EAEc",
  "debugId": "7BC0F345A8A7745B64756E2164756E21",
  "names": []
}