AK-21/Graphite-Industrial-Intelligence
0
1import * as react from 'react';2import { RefAttributes, SVGProps, ForwardRefExoticComponent } from 'react';3 4/**5 * A reduced version of `SVGElementType` from @types/react. This type was added6 * with the release of React 19, and is included here in order to support usage7 * with older versions.8 */9type SVGElementType = 'circle' | 'ellipse' | 'g' | 'line' | 'path' | 'polygon' | 'polyline' | 'rect';10type IconNode = [elementName: SVGElementType, attrs: Record<string, string>][];11type SVGAttributes = Partial<SVGProps<SVGSVGElement>>;12type ElementAttributes = RefAttributes<SVGSVGElement> & SVGAttributes;13interface LucideProps extends ElementAttributes {14 size?: string | number;15 absoluteStrokeWidth?: boolean;16}17type LucideIcon = ForwardRefExoticComponent<Omit<LucideProps, 'ref'> & RefAttributes<SVGSVGElement>>;18 19declare const __iconNode$rf: IconNode;20/**21 * @component @name ZoomOut22 * @description Lucide SVG icon component, renders SVG Element with children.23 *24 * @preview  - https://lucide.dev/icons/zoom-out25 * @see https://lucide.dev/guide/packages/lucide-react - Documentation26 *27 * @param {Object} props - Lucide icons props and any valid SVG attribute28 * @returns {JSX.Element} JSX Element29 *30 */31declare const ZoomOut: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;32 33declare namespace __icons_zoom_out {34 export {35 __iconNode$rf as __iconNode,36 ZoomOut as default,37 };38}39 40declare const __iconNode$re: IconNode;41/**42 * @component @name ZoomIn43 * @description Lucide SVG icon component, renders SVG Element with children.44 *45 * @preview  - https://lucide.dev/icons/zoom-in46 * @see https://lucide.dev/guide/packages/lucide-react - Documentation47 *48 * @param {Object} props - Lucide icons props and any valid SVG attribute49 * @returns {JSX.Element} JSX Element50 *51 */52declare const ZoomIn: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;53 54declare namespace __icons_zoom_in {55 export {56 __iconNode$re as __iconNode,57 ZoomIn as default,58 };59}60 61declare const __iconNode$rd: IconNode;62/**63 * @component @name ZodiacVirgo64 * @description Lucide SVG icon component, renders SVG Element with children.65 *66 * @preview  - https://lucide.dev/icons/zodiac-virgo67 * @see https://lucide.dev/guide/packages/lucide-react - Documentation68 *69 * @param {Object} props - Lucide icons props and any valid SVG attribute70 * @returns {JSX.Element} JSX Element71 *72 */73declare const ZodiacVirgo: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;74 75declare namespace __icons_zodiac_virgo {76 export {77 __iconNode$rd as __iconNode,78 ZodiacVirgo as default,79 };80}81 82declare const __iconNode$rc: IconNode;83/**84 * @component @name ZodiacTaurus85 * @description Lucide SVG icon component, renders SVG Element with children.86 *87 * @preview  - https://lucide.dev/icons/zodiac-taurus88 * @see https://lucide.dev/guide/packages/lucide-react - Documentation89 *90 * @param {Object} props - Lucide icons props and any valid SVG attribute91 * @returns {JSX.Element} JSX Element92 *93 */94declare const ZodiacTaurus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;95 96declare namespace __icons_zodiac_taurus {97 export {98 __iconNode$rc as __iconNode,99 ZodiacTaurus as default,100 };101}102 103declare const __iconNode$rb: IconNode;104/**105 * @component @name ZodiacScorpio106 * @description Lucide SVG icon component, renders SVG Element with children.107 *108 * @preview  - https://lucide.dev/icons/zodiac-scorpio109 * @see https://lucide.dev/guide/packages/lucide-react - Documentation110 *111 * @param {Object} props - Lucide icons props and any valid SVG attribute112 * @returns {JSX.Element} JSX Element113 *114 */115declare const ZodiacScorpio: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;116 117declare namespace __icons_zodiac_scorpio {118 export {119 __iconNode$rb as __iconNode,120 ZodiacScorpio as default,121 };122}123 124declare const __iconNode$ra: IconNode;125/**126 * @component @name ZodiacSagittarius127 * @description Lucide SVG icon component, renders SVG Element with children.128 *129 * @preview  - https://lucide.dev/icons/zodiac-sagittarius130 * @see https://lucide.dev/guide/packages/lucide-react - Documentation131 *132 * @param {Object} props - Lucide icons props and any valid SVG attribute133 * @returns {JSX.Element} JSX Element134 *135 */136declare const ZodiacSagittarius: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;137 138declare namespace __icons_zodiac_sagittarius {139 export {140 __iconNode$ra as __iconNode,141 ZodiacSagittarius as default,142 };143}144 145declare const __iconNode$r9: IconNode;146/**147 * @component @name ZodiacPisces148 * @description Lucide SVG icon component, renders SVG Element with children.149 *150 * @preview  - https://lucide.dev/icons/zodiac-pisces151 * @see https://lucide.dev/guide/packages/lucide-react - Documentation152 *153 * @param {Object} props - Lucide icons props and any valid SVG attribute154 * @returns {JSX.Element} JSX Element155 *156 */157declare const ZodiacPisces: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;158 159declare namespace __icons_zodiac_pisces {160 export {161 __iconNode$r9 as __iconNode,162 ZodiacPisces as default,163 };164}165 166declare const __iconNode$r8: IconNode;167/**168 * @component @name ZodiacOphiuchus169 * @description Lucide SVG icon component, renders SVG Element with children.170 *171 * @preview  - https://lucide.dev/icons/zodiac-ophiuchus172 * @see https://lucide.dev/guide/packages/lucide-react - Documentation173 *174 * @param {Object} props - Lucide icons props and any valid SVG attribute175 * @returns {JSX.Element} JSX Element176 *177 */178declare const ZodiacOphiuchus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;179 180declare namespace __icons_zodiac_ophiuchus {181 export {182 __iconNode$r8 as __iconNode,183 ZodiacOphiuchus as default,184 };185}186 187declare const __iconNode$r7: IconNode;188/**189 * @component @name ZodiacLibra190 * @description Lucide SVG icon component, renders SVG Element with children.191 *192 * @preview  - https://lucide.dev/icons/zodiac-libra193 * @see https://lucide.dev/guide/packages/lucide-react - Documentation194 *195 * @param {Object} props - Lucide icons props and any valid SVG attribute196 * @returns {JSX.Element} JSX Element197 *198 */199declare const ZodiacLibra: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;200 201declare namespace __icons_zodiac_libra {202 export {203 __iconNode$r7 as __iconNode,204 ZodiacLibra as default,205 };206}207 208declare const __iconNode$r6: IconNode;209/**210 * @component @name ZodiacLeo211 * @description Lucide SVG icon component, renders SVG Element with children.212 *213 * @preview  - https://lucide.dev/icons/zodiac-leo214 * @see https://lucide.dev/guide/packages/lucide-react - Documentation215 *216 * @param {Object} props - Lucide icons props and any valid SVG attribute217 * @returns {JSX.Element} JSX Element218 *219 */220declare const ZodiacLeo: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;221 222declare namespace __icons_zodiac_leo {223 export {224 __iconNode$r6 as __iconNode,225 ZodiacLeo as default,226 };227}228 229declare const __iconNode$r5: IconNode;230/**231 * @component @name ZodiacGemini232 * @description Lucide SVG icon component, renders SVG Element with children.233 *234 * @preview  - https://lucide.dev/icons/zodiac-gemini235 * @see https://lucide.dev/guide/packages/lucide-react - Documentation236 *237 * @param {Object} props - Lucide icons props and any valid SVG attribute238 * @returns {JSX.Element} JSX Element239 *240 */241declare const ZodiacGemini: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;242 243declare namespace __icons_zodiac_gemini {244 export {245 __iconNode$r5 as __iconNode,246 ZodiacGemini as default,247 };248}249 250declare const __iconNode$r4: IconNode;251/**252 * @component @name ZodiacCapricorn253 * @description Lucide SVG icon component, renders SVG Element with children.254 *255 * @preview  - https://lucide.dev/icons/zodiac-capricorn256 * @see https://lucide.dev/guide/packages/lucide-react - Documentation257 *258 * @param {Object} props - Lucide icons props and any valid SVG attribute259 * @returns {JSX.Element} JSX Element260 *261 */262declare const ZodiacCapricorn: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;263 264declare namespace __icons_zodiac_capricorn {265 export {266 __iconNode$r4 as __iconNode,267 ZodiacCapricorn as default,268 };269}270 271declare const __iconNode$r3: IconNode;272/**273 * @component @name ZodiacCancer274 * @description Lucide SVG icon component, renders SVG Element with children.275 *276 * @preview  - https://lucide.dev/icons/zodiac-cancer277 * @see https://lucide.dev/guide/packages/lucide-react - Documentation278 *279 * @param {Object} props - Lucide icons props and any valid SVG attribute280 * @returns {JSX.Element} JSX Element281 *282 */283declare const ZodiacCancer: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;284 285declare namespace __icons_zodiac_cancer {286 export {287 __iconNode$r3 as __iconNode,288 ZodiacCancer as default,289 };290}291 292declare const __iconNode$r2: IconNode;293/**294 * @component @name ZodiacAries295 * @description Lucide SVG icon component, renders SVG Element with children.296 *297 * @preview  - https://lucide.dev/icons/zodiac-aries298 * @see https://lucide.dev/guide/packages/lucide-react - Documentation299 *300 * @param {Object} props - Lucide icons props and any valid SVG attribute301 * @returns {JSX.Element} JSX Element302 *303 */304declare const ZodiacAries: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;305 306declare namespace __icons_zodiac_aries {307 export {308 __iconNode$r2 as __iconNode,309 ZodiacAries as default,310 };311}312 313declare const __iconNode$r1: IconNode;314/**315 * @component @name ZodiacAquarius316 * @description Lucide SVG icon component, renders SVG Element with children.317 *318 * @preview  - https://lucide.dev/icons/zodiac-aquarius319 * @see https://lucide.dev/guide/packages/lucide-react - Documentation320 *321 * @param {Object} props - Lucide icons props and any valid SVG attribute322 * @returns {JSX.Element} JSX Element323 *324 */325declare const ZodiacAquarius: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;326 327declare namespace __icons_zodiac_aquarius {328 export {329 __iconNode$r1 as __iconNode,330 ZodiacAquarius as default,331 };332}333 334declare const __iconNode$r0: IconNode;335/**336 * @component @name Zap337 * @description Lucide SVG icon component, renders SVG Element with children.338 *339 * @preview  - https://lucide.dev/icons/zap340 * @see https://lucide.dev/guide/packages/lucide-react - Documentation341 *342 * @param {Object} props - Lucide icons props and any valid SVG attribute343 * @returns {JSX.Element} JSX Element344 *345 */346declare const Zap: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;347 348declare namespace __icons_zap {349 export {350 __iconNode$r0 as __iconNode,351 Zap as default,352 };353}354 355declare const __iconNode$q$: IconNode;356/**357 * @component @name ZapOff358 * @description Lucide SVG icon component, renders SVG Element with children.359 *360 * @preview  - https://lucide.dev/icons/zap-off361 * @see https://lucide.dev/guide/packages/lucide-react - Documentation362 *363 * @param {Object} props - Lucide icons props and any valid SVG attribute364 * @returns {JSX.Element} JSX Element365 *366 */367declare const ZapOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;368 369declare namespace __icons_zap_off {370 export {371 __iconNode$q$ as __iconNode,372 ZapOff as default,373 };374}375 376declare const __iconNode$q_: IconNode;377/**378 * @component @name X379 * @description Lucide SVG icon component, renders SVG Element with children.380 *381 * @preview  - https://lucide.dev/icons/x382 * @see https://lucide.dev/guide/packages/lucide-react - Documentation383 *384 * @param {Object} props - Lucide icons props and any valid SVG attribute385 * @returns {JSX.Element} JSX Element386 *387 */388declare const X: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;389 390declare namespace __icons_x {391 export {392 __iconNode$q_ as __iconNode,393 X as default,394 };395}396 397declare const __iconNode$qZ: IconNode;398/**399 * @component @name XLineTop400 * @description Lucide SVG icon component, renders SVG Element with children.401 *402 * @preview  - https://lucide.dev/icons/x-line-top403 * @see https://lucide.dev/guide/packages/lucide-react - Documentation404 *405 * @param {Object} props - Lucide icons props and any valid SVG attribute406 * @returns {JSX.Element} JSX Element407 *408 */409declare const XLineTop: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;410 411declare namespace __icons_x_line_top {412 export {413 __iconNode$qZ as __iconNode,414 XLineTop as default,415 };416}417 418declare const __iconNode$qY: IconNode;419/**420 * @component @name Wrench421 * @description Lucide SVG icon component, renders SVG Element with children.422 *423 * @preview  - https://lucide.dev/icons/wrench424 * @see https://lucide.dev/guide/packages/lucide-react - Documentation425 *426 * @param {Object} props - Lucide icons props and any valid SVG attribute427 * @returns {JSX.Element} JSX Element428 *429 */430declare const Wrench: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;431 432declare namespace __icons_wrench {433 export {434 __iconNode$qY as __iconNode,435 Wrench as default,436 };437}438 439declare const __iconNode$qX: IconNode;440/**441 * @component @name WrenchOff442 * @description Lucide SVG icon component, renders SVG Element with children.443 *444 * @preview  - https://lucide.dev/icons/wrench-off445 * @see https://lucide.dev/guide/packages/lucide-react - Documentation446 *447 * @param {Object} props - Lucide icons props and any valid SVG attribute448 * @returns {JSX.Element} JSX Element449 *450 */451declare const WrenchOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;452 453declare namespace __icons_wrench_off {454 export {455 __iconNode$qX as __iconNode,456 WrenchOff as default,457 };458}459 460declare const __iconNode$qW: IconNode;461/**462 * @component @name Worm463 * @description Lucide SVG icon component, renders SVG Element with children.464 *465 * @preview  - https://lucide.dev/icons/worm466 * @see https://lucide.dev/guide/packages/lucide-react - Documentation467 *468 * @param {Object} props - Lucide icons props and any valid SVG attribute469 * @returns {JSX.Element} JSX Element470 *471 */472declare const Worm: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;473 474declare namespace __icons_worm {475 export {476 __iconNode$qW as __iconNode,477 Worm as default,478 };479}480 481declare const __iconNode$qV: IconNode;482/**483 * @component @name Workflow484 * @description Lucide SVG icon component, renders SVG Element with children.485 *486 * @preview  - https://lucide.dev/icons/workflow487 * @see https://lucide.dev/guide/packages/lucide-react - Documentation488 *489 * @param {Object} props - Lucide icons props and any valid SVG attribute490 * @returns {JSX.Element} JSX Element491 *492 */493declare const Workflow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;494 495declare namespace __icons_workflow {496 export {497 __iconNode$qV as __iconNode,498 Workflow as default,499 };500}501 502declare const __iconNode$qU: IconNode;503/**504 * @component @name Wine505 * @description Lucide SVG icon component, renders SVG Element with children.506 *507 * @preview  - https://lucide.dev/icons/wine508 * @see https://lucide.dev/guide/packages/lucide-react - Documentation509 *510 * @param {Object} props - Lucide icons props and any valid SVG attribute511 * @returns {JSX.Element} JSX Element512 *513 */514declare const Wine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;515 516declare namespace __icons_wine {517 export {518 __iconNode$qU as __iconNode,519 Wine as default,520 };521}522 523declare const __iconNode$qT: IconNode;524/**525 * @component @name WineOff526 * @description Lucide SVG icon component, renders SVG Element with children.527 *528 * @preview  - https://lucide.dev/icons/wine-off529 * @see https://lucide.dev/guide/packages/lucide-react - Documentation530 *531 * @param {Object} props - Lucide icons props and any valid SVG attribute532 * @returns {JSX.Element} JSX Element533 *534 */535declare const WineOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;536 537declare namespace __icons_wine_off {538 export {539 __iconNode$qT as __iconNode,540 WineOff as default,541 };542}543 544declare const __iconNode$qS: IconNode;545/**546 * @component @name Wind547 * @description Lucide SVG icon component, renders SVG Element with children.548 *549 * @preview  - https://lucide.dev/icons/wind550 * @see https://lucide.dev/guide/packages/lucide-react - Documentation551 *552 * @param {Object} props - Lucide icons props and any valid SVG attribute553 * @returns {JSX.Element} JSX Element554 *555 */556declare const Wind: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;557 558declare namespace __icons_wind {559 export {560 __iconNode$qS as __iconNode,561 Wind as default,562 };563}564 565declare const __iconNode$qR: IconNode;566/**567 * @component @name WindArrowDown568 * @description Lucide SVG icon component, renders SVG Element with children.569 *570 * @preview  - https://lucide.dev/icons/wind-arrow-down571 * @see https://lucide.dev/guide/packages/lucide-react - Documentation572 *573 * @param {Object} props - Lucide icons props and any valid SVG attribute574 * @returns {JSX.Element} JSX Element575 *576 */577declare const WindArrowDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;578 579declare namespace __icons_wind_arrow_down {580 export {581 __iconNode$qR as __iconNode,582 WindArrowDown as default,583 };584}585 586declare const __iconNode$qQ: IconNode;587/**588 * @component @name Wifi589 * @description Lucide SVG icon component, renders SVG Element with children.590 *591 * @preview  - https://lucide.dev/icons/wifi592 * @see https://lucide.dev/guide/packages/lucide-react - Documentation593 *594 * @param {Object} props - Lucide icons props and any valid SVG attribute595 * @returns {JSX.Element} JSX Element596 *597 */598declare const Wifi: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;599 600declare namespace __icons_wifi {601 export {602 __iconNode$qQ as __iconNode,603 Wifi as default,604 };605}606 607declare const __iconNode$qP: IconNode;608/**609 * @component @name WifiZero610 * @description Lucide SVG icon component, renders SVG Element with children.611 *612 * @preview  - https://lucide.dev/icons/wifi-zero613 * @see https://lucide.dev/guide/packages/lucide-react - Documentation614 *615 * @param {Object} props - Lucide icons props and any valid SVG attribute616 * @returns {JSX.Element} JSX Element617 *618 */619declare const WifiZero: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;620 621declare namespace __icons_wifi_zero {622 export {623 __iconNode$qP as __iconNode,624 WifiZero as default,625 };626}627 628declare const __iconNode$qO: IconNode;629/**630 * @component @name WifiSync631 * @description Lucide SVG icon component, renders SVG Element with children.632 *633 * @preview  - https://lucide.dev/icons/wifi-sync634 * @see https://lucide.dev/guide/packages/lucide-react - Documentation635 *636 * @param {Object} props - Lucide icons props and any valid SVG attribute637 * @returns {JSX.Element} JSX Element638 *639 */640declare const WifiSync: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;641 642declare namespace __icons_wifi_sync {643 export {644 __iconNode$qO as __iconNode,645 WifiSync as default,646 };647}648 649declare const __iconNode$qN: IconNode;650/**651 * @component @name WifiPen652 * @description Lucide SVG icon component, renders SVG Element with children.653 *654 * @preview  - https://lucide.dev/icons/wifi-pen655 * @see https://lucide.dev/guide/packages/lucide-react - Documentation656 *657 * @param {Object} props - Lucide icons props and any valid SVG attribute658 * @returns {JSX.Element} JSX Element659 *660 */661declare const WifiPen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;662 663declare namespace __icons_wifi_pen {664 export {665 __iconNode$qN as __iconNode,666 WifiPen as default,667 };668}669 670declare const __iconNode$qM: IconNode;671/**672 * @component @name WifiOff673 * @description Lucide SVG icon component, renders SVG Element with children.674 *675 * @preview  - https://lucide.dev/icons/wifi-off676 * @see https://lucide.dev/guide/packages/lucide-react - Documentation677 *678 * @param {Object} props - Lucide icons props and any valid SVG attribute679 * @returns {JSX.Element} JSX Element680 *681 */682declare const WifiOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;683 684declare namespace __icons_wifi_off {685 export {686 __iconNode$qM as __iconNode,687 WifiOff as default,688 };689}690 691declare const __iconNode$qL: IconNode;692/**693 * @component @name WifiLow694 * @description Lucide SVG icon component, renders SVG Element with children.695 *696 * @preview  - https://lucide.dev/icons/wifi-low697 * @see https://lucide.dev/guide/packages/lucide-react - Documentation698 *699 * @param {Object} props - Lucide icons props and any valid SVG attribute700 * @returns {JSX.Element} JSX Element701 *702 */703declare const WifiLow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;704 705declare namespace __icons_wifi_low {706 export {707 __iconNode$qL as __iconNode,708 WifiLow as default,709 };710}711 712declare const __iconNode$qK: IconNode;713/**714 * @component @name WifiHigh715 * @description Lucide SVG icon component, renders SVG Element with children.716 *717 * @preview  - https://lucide.dev/icons/wifi-high718 * @see https://lucide.dev/guide/packages/lucide-react - Documentation719 *720 * @param {Object} props - Lucide icons props and any valid SVG attribute721 * @returns {JSX.Element} JSX Element722 *723 */724declare const WifiHigh: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;725 726declare namespace __icons_wifi_high {727 export {728 __iconNode$qK as __iconNode,729 WifiHigh as default,730 };731}732 733declare const __iconNode$qJ: IconNode;734/**735 * @component @name WifiCog736 * @description Lucide SVG icon component, renders SVG Element with children.737 *738 * @preview  - https://lucide.dev/icons/wifi-cog739 * @see https://lucide.dev/guide/packages/lucide-react - Documentation740 *741 * @param {Object} props - Lucide icons props and any valid SVG attribute742 * @returns {JSX.Element} JSX Element743 *744 */745declare const WifiCog: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;746 747declare namespace __icons_wifi_cog {748 export {749 __iconNode$qJ as __iconNode,750 WifiCog as default,751 };752}753 754declare const __iconNode$qI: IconNode;755/**756 * @component @name WholeWord757 * @description Lucide SVG icon component, renders SVG Element with children.758 *759 * @preview  - https://lucide.dev/icons/whole-word760 * @see https://lucide.dev/guide/packages/lucide-react - Documentation761 *762 * @param {Object} props - Lucide icons props and any valid SVG attribute763 * @returns {JSX.Element} JSX Element764 *765 */766declare const WholeWord: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;767 768declare namespace __icons_whole_word {769 export {770 __iconNode$qI as __iconNode,771 WholeWord as default,772 };773}774 775declare const __iconNode$qH: IconNode;776/**777 * @component @name Wheat778 * @description Lucide SVG icon component, renders SVG Element with children.779 *780 * @preview  - https://lucide.dev/icons/wheat781 * @see https://lucide.dev/guide/packages/lucide-react - Documentation782 *783 * @param {Object} props - Lucide icons props and any valid SVG attribute784 * @returns {JSX.Element} JSX Element785 *786 */787declare const Wheat: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;788 789declare namespace __icons_wheat {790 export {791 __iconNode$qH as __iconNode,792 Wheat as default,793 };794}795 796declare const __iconNode$qG: IconNode;797/**798 * @component @name WheatOff799 * @description Lucide SVG icon component, renders SVG Element with children.800 *801 * @preview  - https://lucide.dev/icons/wheat-off802 * @see https://lucide.dev/guide/packages/lucide-react - Documentation803 *804 * @param {Object} props - Lucide icons props and any valid SVG attribute805 * @returns {JSX.Element} JSX Element806 *807 */808declare const WheatOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;809 810declare namespace __icons_wheat_off {811 export {812 __iconNode$qG as __iconNode,813 WheatOff as default,814 };815}816 817declare const __iconNode$qF: IconNode;818/**819 * @component @name Weight820 * @description Lucide SVG icon component, renders SVG Element with children.821 *822 * @preview  - https://lucide.dev/icons/weight823 * @see https://lucide.dev/guide/packages/lucide-react - Documentation824 *825 * @param {Object} props - Lucide icons props and any valid SVG attribute826 * @returns {JSX.Element} JSX Element827 *828 */829declare const Weight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;830 831declare namespace __icons_weight {832 export {833 __iconNode$qF as __iconNode,834 Weight as default,835 };836}837 838declare const __iconNode$qE: IconNode;839/**840 * @component @name WeightTilde841 * @description Lucide SVG icon component, renders SVG Element with children.842 *843 * @preview  - https://lucide.dev/icons/weight-tilde844 * @see https://lucide.dev/guide/packages/lucide-react - Documentation845 *846 * @param {Object} props - Lucide icons props and any valid SVG attribute847 * @returns {JSX.Element} JSX Element848 *849 */850declare const WeightTilde: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;851 852declare namespace __icons_weight_tilde {853 export {854 __iconNode$qE as __iconNode,855 WeightTilde as default,856 };857}858 859declare const __iconNode$qD: IconNode;860/**861 * @component @name Webhook862 * @description Lucide SVG icon component, renders SVG Element with children.863 *864 * @preview  - https://lucide.dev/icons/webhook865 * @see https://lucide.dev/guide/packages/lucide-react - Documentation866 *867 * @param {Object} props - Lucide icons props and any valid SVG attribute868 * @returns {JSX.Element} JSX Element869 *870 */871declare const Webhook: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;872 873declare namespace __icons_webhook {874 export {875 __iconNode$qD as __iconNode,876 Webhook as default,877 };878}879 880declare const __iconNode$qC: IconNode;881/**882 * @component @name WebhookOff883 * @description Lucide SVG icon component, renders SVG Element with children.884 *885 * @preview  - https://lucide.dev/icons/webhook-off886 * @see https://lucide.dev/guide/packages/lucide-react - Documentation887 *888 * @param {Object} props - Lucide icons props and any valid SVG attribute889 * @returns {JSX.Element} JSX Element890 *891 */892declare const WebhookOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;893 894declare namespace __icons_webhook_off {895 export {896 __iconNode$qC as __iconNode,897 WebhookOff as default,898 };899}900 901declare const __iconNode$qB: IconNode;902/**903 * @component @name Webcam904 * @description Lucide SVG icon component, renders SVG Element with children.905 *906 * @preview  - https://lucide.dev/icons/webcam907 * @see https://lucide.dev/guide/packages/lucide-react - Documentation908 *909 * @param {Object} props - Lucide icons props and any valid SVG attribute910 * @returns {JSX.Element} JSX Element911 *912 */913declare const Webcam: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;914 915declare namespace __icons_webcam {916 export {917 __iconNode$qB as __iconNode,918 Webcam as default,919 };920}921 922declare const __iconNode$qA: IconNode;923/**924 * @component @name WebcamOff925 * @description Lucide SVG icon component, renders SVG Element with children.926 *927 * @preview  - https://lucide.dev/icons/webcam-off928 * @see https://lucide.dev/guide/packages/lucide-react - Documentation929 *930 * @param {Object} props - Lucide icons props and any valid SVG attribute931 * @returns {JSX.Element} JSX Element932 *933 */934declare const WebcamOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;935 936declare namespace __icons_webcam_off {937 export {938 __iconNode$qA as __iconNode,939 WebcamOff as default,940 };941}942 943declare const __iconNode$qz: IconNode;944/**945 * @component @name Waypoints946 * @description Lucide SVG icon component, renders SVG Element with children.947 *948 * @preview  - https://lucide.dev/icons/waypoints949 * @see https://lucide.dev/guide/packages/lucide-react - Documentation950 *951 * @param {Object} props - Lucide icons props and any valid SVG attribute952 * @returns {JSX.Element} JSX Element953 *954 */955declare const Waypoints: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;956 957declare namespace __icons_waypoints {958 export {959 __iconNode$qz as __iconNode,960 Waypoints as default,961 };962}963 964declare const __iconNode$qy: IconNode;965/**966 * @component @name WavesVertical967 * @description Lucide SVG icon component, renders SVG Element with children.968 *969 * @preview  - https://lucide.dev/icons/waves-vertical970 * @see https://lucide.dev/guide/packages/lucide-react - Documentation971 *972 * @param {Object} props - Lucide icons props and any valid SVG attribute973 * @returns {JSX.Element} JSX Element974 *975 */976declare const WavesVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;977 978declare namespace __icons_waves_vertical {979 export {980 __iconNode$qy as __iconNode,981 WavesVertical as default,982 };983}984 985declare const __iconNode$qx: IconNode;986/**987 * @component @name WavesLadder988 * @description Lucide SVG icon component, renders SVG Element with children.989 *990 * @preview  - https://lucide.dev/icons/waves-ladder991 * @see https://lucide.dev/guide/packages/lucide-react - Documentation992 *993 * @param {Object} props - Lucide icons props and any valid SVG attribute994 * @returns {JSX.Element} JSX Element995 *996 */997declare const WavesLadder: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;998 999declare namespace __icons_waves_ladder {1000 export {1001 __iconNode$qx as __iconNode,1002 WavesLadder as default,1003 };1004}1005 1006declare const __iconNode$qw: IconNode;1007/**1008 * @component @name WavesHorizontal1009 * @description Lucide SVG icon component, renders SVG Element with children.1010 *1011 * @preview  - https://lucide.dev/icons/waves-horizontal1012 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1013 *1014 * @param {Object} props - Lucide icons props and any valid SVG attribute1015 * @returns {JSX.Element} JSX Element1016 *1017 */1018declare const WavesHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1019 1020declare namespace __icons_waves_horizontal {1021 export {1022 __iconNode$qw as __iconNode,1023 WavesHorizontal as default,1024 };1025}1026 1027declare const __iconNode$qv: IconNode;1028/**1029 * @component @name WavesArrowUp1030 * @description Lucide SVG icon component, renders SVG Element with children.1031 *1032 * @preview  - https://lucide.dev/icons/waves-arrow-up1033 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1034 *1035 * @param {Object} props - Lucide icons props and any valid SVG attribute1036 * @returns {JSX.Element} JSX Element1037 *1038 */1039declare const WavesArrowUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1040 1041declare namespace __icons_waves_arrow_up {1042 export {1043 __iconNode$qv as __iconNode,1044 WavesArrowUp as default,1045 };1046}1047 1048declare const __iconNode$qu: IconNode;1049/**1050 * @component @name WavesArrowDown1051 * @description Lucide SVG icon component, renders SVG Element with children.1052 *1053 * @preview  - https://lucide.dev/icons/waves-arrow-down1054 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1055 *1056 * @param {Object} props - Lucide icons props and any valid SVG attribute1057 * @returns {JSX.Element} JSX Element1058 *1059 */1060declare const WavesArrowDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1061 1062declare namespace __icons_waves_arrow_down {1063 export {1064 __iconNode$qu as __iconNode,1065 WavesArrowDown as default,1066 };1067}1068 1069declare const __iconNode$qt: IconNode;1070/**1071 * @component @name Watch1072 * @description Lucide SVG icon component, renders SVG Element with children.1073 *1074 * @preview  - https://lucide.dev/icons/watch1075 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1076 *1077 * @param {Object} props - Lucide icons props and any valid SVG attribute1078 * @returns {JSX.Element} JSX Element1079 *1080 */1081declare const Watch: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1082 1083declare namespace __icons_watch {1084 export {1085 __iconNode$qt as __iconNode,1086 Watch as default,1087 };1088}1089 1090declare const __iconNode$qs: IconNode;1091/**1092 * @component @name WashingMachine1093 * @description Lucide SVG icon component, renders SVG Element with children.1094 *1095 * @preview  - https://lucide.dev/icons/washing-machine1096 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1097 *1098 * @param {Object} props - Lucide icons props and any valid SVG attribute1099 * @returns {JSX.Element} JSX Element1100 *1101 */1102declare const WashingMachine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1103 1104declare namespace __icons_washing_machine {1105 export {1106 __iconNode$qs as __iconNode,1107 WashingMachine as default,1108 };1109}1110 1111declare const __iconNode$qr: IconNode;1112/**1113 * @component @name Warehouse1114 * @description Lucide SVG icon component, renders SVG Element with children.1115 *1116 * @preview  - https://lucide.dev/icons/warehouse1117 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1118 *1119 * @param {Object} props - Lucide icons props and any valid SVG attribute1120 * @returns {JSX.Element} JSX Element1121 *1122 */1123declare const Warehouse: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1124 1125declare namespace __icons_warehouse {1126 export {1127 __iconNode$qr as __iconNode,1128 Warehouse as default,1129 };1130}1131 1132declare const __iconNode$qq: IconNode;1133/**1134 * @component @name Wand1135 * @description Lucide SVG icon component, renders SVG Element with children.1136 *1137 * @preview  - https://lucide.dev/icons/wand1138 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1139 *1140 * @param {Object} props - Lucide icons props and any valid SVG attribute1141 * @returns {JSX.Element} JSX Element1142 *1143 */1144declare const Wand: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1145 1146declare namespace __icons_wand {1147 export {1148 __iconNode$qq as __iconNode,1149 Wand as default,1150 };1151}1152 1153declare const __iconNode$qp: IconNode;1154/**1155 * @component @name WandSparkles1156 * @description Lucide SVG icon component, renders SVG Element with children.1157 *1158 * @preview  - https://lucide.dev/icons/wand-sparkles1159 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1160 *1161 * @param {Object} props - Lucide icons props and any valid SVG attribute1162 * @returns {JSX.Element} JSX Element1163 *1164 */1165declare const WandSparkles: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1166 1167declare namespace __icons_wand_sparkles {1168 export {1169 __iconNode$qp as __iconNode,1170 WandSparkles as default,1171 };1172}1173 1174declare const __iconNode$qo: IconNode;1175/**1176 * @component @name Wallpaper1177 * @description Lucide SVG icon component, renders SVG Element with children.1178 *1179 * @preview  - https://lucide.dev/icons/wallpaper1180 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1181 *1182 * @param {Object} props - Lucide icons props and any valid SVG attribute1183 * @returns {JSX.Element} JSX Element1184 *1185 */1186declare const Wallpaper: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1187 1188declare namespace __icons_wallpaper {1189 export {1190 __iconNode$qo as __iconNode,1191 Wallpaper as default,1192 };1193}1194 1195declare const __iconNode$qn: IconNode;1196/**1197 * @component @name Wallet1198 * @description Lucide SVG icon component, renders SVG Element with children.1199 *1200 * @preview  - https://lucide.dev/icons/wallet