{
  "version": 3,
  "sources": ["src/IconAiSlopSign/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 IconAiSlopSign: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-1-stroke-1.5-IconAiSlopSign\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.4602 1.66757C11.8115 1.55359 12.19 1.55345 12.5413 1.66757C12.7868 1.74738 12.9799 1.88383 13.1428 2.02206C13.2991 2.15471 13.4732 2.32901 13.6624 2.51815L21.678 10.5338C21.8499 10.7057 22.0364 10.8843 22.1584 11.0865C22.4983 11.6498 22.4932 12.357 22.1458 12.9156C22.021 13.1161 21.8318 13.292 21.6575 13.4615C21.3421 13.7683 21.1302 13.9753 20.9827 14.1373C20.8512 14.2817 20.8175 14.3416 20.8127 14.3502C20.7596 14.4924 20.7755 14.7004 21.0383 15.0836C21.163 15.2653 21.3184 15.4498 21.4915 15.6451C21.6517 15.8259 21.8507 16.0407 22.0032 16.232C22.3869 16.7134 22.7181 17.3879 22.5334 18.1637C22.2881 19.1942 21.4116 19.697 20.5999 19.8785C19.7841 20.0607 18.853 19.9748 18.1077 19.6881C17.9198 19.6158 17.7562 19.5963 17.6096 19.6178C17.0565 19.6992 16.6702 19.923 16.1633 20.2213C15.6609 20.517 15.0413 20.8837 14.1565 20.9947C13.1601 21.1196 12.5653 20.8954 12.0491 20.6705C11.6001 20.4749 11.2714 20.3131 10.6252 20.3131C10.1204 20.3132 9.75739 20.5997 9.2063 21.0504C8.96743 21.2457 8.64174 21.5124 8.27075 21.6637C7.84366 21.8376 7.35777 21.8614 6.85278 21.609C6.40663 21.3859 6.1075 21.0562 5.93579 20.6646C5.77415 20.2959 5.74501 19.9162 5.74731 19.609C5.74949 19.3225 5.7853 18.9812 5.79712 18.7926C5.81245 18.5473 5.79868 18.4535 5.78931 18.4254C5.73396 18.2594 5.67428 18.1856 5.63989 18.1529C5.60804 18.1228 5.56582 18.0978 5.49145 18.0797C5.29727 18.0325 5.01838 18.0573 4.55591 18.1285C4.16536 18.1887 3.5997 18.2912 3.08227 18.2242C2.48602 18.1468 1.91534 17.8441 1.56763 17.149C1.33037 16.6746 1.35336 16.188 1.47388 15.7808C1.59133 15.3844 1.8094 15.0261 2.02759 14.735C2.32638 14.3362 2.39816 14.1062 2.40942 13.981C2.41833 13.8816 2.39757 13.7662 2.26391 13.5621C2.0993 13.3107 1.95737 13.095 1.85473 12.9166C1.7557 12.7444 1.64856 12.5341 1.60766 12.2965C1.54999 11.9609 1.57936 11.6738 1.70434 11.357C1.78609 11.15 1.90769 10.986 2.02856 10.8463C2.14405 10.7128 2.29288 10.5644 2.45337 10.4039L10.3391 2.51815C10.5281 2.32912 10.7015 2.15463 10.8577 2.02206C11.0206 1.88375 11.2145 1.74739 11.4602 1.66757ZM12.0002 14.0006C11.448 14.0006 11.0002 14.4483 11.0002 15.0006C11.0004 15.5527 11.4481 16.0006 12.0002 16.0006C12.5523 16.0004 13.0001 15.5526 13.0002 15.0006C13.0002 14.4484 12.5524 14.0007 12.0002 14.0006ZM12.0002 8.00058C11.4615 8.00058 11.0366 8.45966 11.0793 8.99667L11.3518 12.4019C11.3788 12.7397 11.6614 13.0006 12.0002 13.0006C12.3389 13.0004 12.6207 12.7396 12.6477 12.4019L12.9202 8.99667C12.9629 8.45976 12.5389 8.00076 12.0002 8.00058Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAiSlopSign;\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,gBAAilF,EAAjlF,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,u7EAAu7E,KAAK,eAAc,CAAI,CACzlF,EAEc",
  "debugId": "F6ADAEBD95689D7964756E2164756E21",
  "names": []
}