{
  "version": 3,
  "sources": ["src/IconSettingsSliderThree/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 IconSettingsSliderThree: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconSettingsSliderThree\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.45123 2.99707C5.72738 2.99707 5.95123 3.22093 5.95123 3.49707V10.5C5.95123 10.7761 5.72738 11 5.45123 11C5.17509 11 4.95123 10.7761 4.95123 10.5V3.49707C4.95123 3.22093 5.17509 2.99707 5.45123 2.99707ZM11.9998 2.99707C12.276 2.99707 12.4998 3.22093 12.4998 3.49707V8.99902H13.9998C14.276 8.99902 14.4998 9.22288 14.4998 9.49902C14.4998 9.77517 14.276 9.99902 13.9998 9.99902H12.0114C12.0075 9.99911 12.0037 9.99915 11.9998 9.99915C11.996 9.99915 11.9922 9.99911 11.9883 9.99902H9.99982C9.72367 9.99902 9.49982 9.77517 9.49982 9.49902C9.49982 9.22288 9.72367 8.99902 9.99982 8.99902H11.4998V3.49707C11.4998 3.22093 11.7237 2.99707 11.9998 2.99707ZM18.5484 2.99707C18.8245 2.99707 19.0484 3.22093 19.0484 3.49707V12.5008C19.0484 12.777 18.8245 13.0008 18.5484 13.0008C18.2723 13.0008 18.0484 12.777 18.0484 12.5008V3.49707C18.0484 3.22093 18.2723 2.99707 18.5484 2.99707ZM11.9998 12.0005C12.276 12.0005 12.4998 12.2243 12.4998 12.5005V20.5038C12.4998 20.78 12.276 21.0038 11.9998 21.0038C11.7237 21.0038 11.4998 20.78 11.4998 20.5038V12.5005C11.4998 12.2243 11.7237 12.0005 11.9998 12.0005ZM2.99609 13.5015C2.99609 13.2253 3.21995 13.0015 3.49609 13.0015H7.49982C7.77596 13.0015 7.99982 13.2253 7.99982 13.5015C7.99982 13.7776 7.77596 14.0015 7.49982 14.0015H5.88434C5.92688 14.075 5.95123 14.1604 5.95123 14.2515V20.504C5.95123 20.7801 5.72738 21.004 5.45123 21.004C5.17509 21.004 4.95123 20.7801 4.95123 20.504V14.2515C4.95123 14.1604 4.97558 14.075 5.01812 14.0015H3.49609C3.21995 14.0015 2.99609 13.7776 2.99609 13.5015ZM15.9998 15.502C15.9998 15.2258 16.2237 15.002 16.4998 15.002H20.4998C20.776 15.002 20.9998 15.2258 20.9998 15.502C20.9998 15.7781 20.776 16.002 20.4998 16.002H19.0484V20.5036C19.0484 20.7798 18.8246 21.0036 18.5484 21.0036C18.2723 21.0036 18.0484 20.7798 18.0484 20.5036V16.002H16.4998C16.2237 16.002 15.9998 15.7781 15.9998 15.502Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSettingsSliderThree;\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,EAA4E,EAAM,KAAK,CAAC,IAC5F,gBAAs+D,EAAt+D,IAAqB,EAAO,OAAO,0DAAyD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,q0DAAq0D,KAAK,eAAc,CAAI,CAC9+D,EAEc",
  "debugId": "F2BA5458D6DD959E64756E2164756E21",
  "names": []
}