{
  "version": 3,
  "sources": ["src/IconSteeringWheel/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 IconSteeringWheel: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconSteeringWheel\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 1C12.2761 1 12.5 1.22386 12.5 1.5V3.01365C14.6087 3.12912 16.524 3.97046 18.0004 5.29208L19.0709 4.22164C19.2661 4.02638 19.5827 4.02638 19.778 4.22164C19.9733 4.4169 19.9733 4.73349 19.778 4.92875L18.7076 5.99917C20.0294 7.47565 20.8709 9.39115 20.9863 11.5H22.5C22.7761 11.5 23 11.7239 23 12C23 12.2761 22.7761 12.5 22.5 12.5H20.9863C20.8709 14.6088 20.0295 16.5242 18.7077 18.0006L19.778 19.0709C19.9733 19.2661 19.9733 19.5827 19.778 19.778C19.5827 19.9733 19.2661 19.9733 19.0709 19.778L18.0006 18.7077C16.5242 20.0295 14.6088 20.8709 12.5 20.9863V22.5C12.5 22.7761 12.2761 23 12 23C11.7239 23 11.5 22.7761 11.5 22.5V20.9863C9.39115 20.8709 7.47565 20.0294 5.99917 18.7076L4.92875 19.778C4.73349 19.9733 4.4169 19.9733 4.22164 19.778C4.02638 19.5827 4.02638 19.2661 4.22164 19.0709L5.29208 18.0004C3.97046 16.524 3.12912 14.6087 3.01365 12.5H1.5C1.22386 12.5 1 12.2761 1 12C1 11.7239 1.22386 11.5 1.5 11.5H3.01365C3.12912 9.39124 3.97053 7.47582 5.29225 5.99936L4.22164 4.92875C4.02638 4.73349 4.02638 4.4169 4.22164 4.22164C4.4169 4.02638 4.73349 4.02638 4.92875 4.22164L5.99936 5.29225C7.47582 3.97053 9.39124 3.12912 11.5 3.01365V1.5C11.5 1.22386 11.7239 1 12 1ZM11.5 4.01537C9.66717 4.1284 8.00133 4.85854 6.70769 6.00058L11.5 10.7929V4.01537ZM10.7929 11.5L6.00058 6.70769C4.85854 8.00133 4.1284 9.66717 4.01537 11.5H10.7929ZM4.01537 12.5C4.12839 14.3327 4.85847 15.9985 6.00041 17.2921L10.7925 12.5H4.01537ZM11.5 13.2067L6.7075 17.9992C8.00116 19.1414 9.66708 19.8716 11.5 19.9846V13.2067ZM12.5 19.9846C14.3328 19.8716 15.9987 19.1415 17.2923 17.9994L12.5 13.2071V19.9846ZM13.2071 12.5L17.9994 17.2923C19.1415 15.9987 19.8716 14.3328 19.9846 12.5H13.2071ZM19.9846 11.5C19.8716 9.66708 19.1414 8.00116 17.9992 6.7075L13.2067 11.5H19.9846ZM12.5 10.7925L17.2921 6.00041C15.9985 4.85847 14.3327 4.12839 12.5 4.01537V10.7925Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSteeringWheel;\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,EAAsE,EAAM,KAAK,CAAC,IACtF,gBAAw8D,EAAx8D,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6yDAA6yD,KAAK,eAAc,CAAI,CACh9D,EAEc",
  "debugId": "5BCAEE800808A85C64756E2164756E21",
  "names": []
}