AK-21/Graphite-Industrial-Intelligence
0
1import * as react from 'react';2import { RefAttributes, SVGProps, ForwardRefExoticComponent, ReactNode } 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 19/**20 * @component @name AArrowDown21 * @description Lucide SVG icon component, renders SVG Element with children.22 *23 * @preview  - https://lucide.dev/icons/a-arrow-down24 * @see https://lucide.dev/guide/packages/lucide-react - Documentation25 *26 * @param {Object} props - Lucide icons props and any valid SVG attribute27 * @returns {JSX.Element} JSX Element28 *29 */30declare const AArrowDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;31 32/**33 * @component @name AArrowUp34 * @description Lucide SVG icon component, renders SVG Element with children.35 *36 * @preview  - https://lucide.dev/icons/a-arrow-up37 * @see https://lucide.dev/guide/packages/lucide-react - Documentation38 *39 * @param {Object} props - Lucide icons props and any valid SVG attribute40 * @returns {JSX.Element} JSX Element41 *42 */43declare const AArrowUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;44 45/**46 * @component @name ALargeSmall47 * @description Lucide SVG icon component, renders SVG Element with children.48 *49 * @preview  - https://lucide.dev/icons/a-large-small50 * @see https://lucide.dev/guide/packages/lucide-react - Documentation51 *52 * @param {Object} props - Lucide icons props and any valid SVG attribute53 * @returns {JSX.Element} JSX Element54 *55 */56declare const ALargeSmall: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;57 58/**59 * @component @name Accessibility60 * @description Lucide SVG icon component, renders SVG Element with children.61 *62 * @preview  - https://lucide.dev/icons/accessibility63 * @see https://lucide.dev/guide/packages/lucide-react - Documentation64 *65 * @param {Object} props - Lucide icons props and any valid SVG attribute66 * @returns {JSX.Element} JSX Element67 *68 */69declare const Accessibility: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;70 71/**72 * @component @name Activity73 * @description Lucide SVG icon component, renders SVG Element with children.74 *75 * @preview  - https://lucide.dev/icons/activity76 * @see https://lucide.dev/guide/packages/lucide-react - Documentation77 *78 * @param {Object} props - Lucide icons props and any valid SVG attribute79 * @returns {JSX.Element} JSX Element80 *81 */82declare const Activity: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;83 84/**85 * @component @name Ad86 * @description Lucide SVG icon component, renders SVG Element with children.87 *88 * @preview  - https://lucide.dev/icons/ad89 * @see https://lucide.dev/guide/packages/lucide-react - Documentation90 *91 * @param {Object} props - Lucide icons props and any valid SVG attribute92 * @returns {JSX.Element} JSX Element93 *94 */95declare const Ad: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;96 97/**98 * @component @name AirVent99 * @description Lucide SVG icon component, renders SVG Element with children.100 *101 * @preview  - https://lucide.dev/icons/air-vent102 * @see https://lucide.dev/guide/packages/lucide-react - Documentation103 *104 * @param {Object} props - Lucide icons props and any valid SVG attribute105 * @returns {JSX.Element} JSX Element106 *107 */108declare const AirVent: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;109 110/**111 * @component @name Airplay112 * @description Lucide SVG icon component, renders SVG Element with children.113 *114 * @preview  - https://lucide.dev/icons/airplay115 * @see https://lucide.dev/guide/packages/lucide-react - Documentation116 *117 * @param {Object} props - Lucide icons props and any valid SVG attribute118 * @returns {JSX.Element} JSX Element119 *120 */121declare const Airplay: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;122 123/**124 * @component @name AlarmClockCheck125 * @description Lucide SVG icon component, renders SVG Element with children.126 *127 * @preview  - https://lucide.dev/icons/alarm-clock-check128 * @see https://lucide.dev/guide/packages/lucide-react - Documentation129 *130 * @param {Object} props - Lucide icons props and any valid SVG attribute131 * @returns {JSX.Element} JSX Element132 *133 */134declare const AlarmClockCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;135 136/**137 * @component @name AlarmClockMinus138 * @description Lucide SVG icon component, renders SVG Element with children.139 *140 * @preview  - https://lucide.dev/icons/alarm-clock-minus141 * @see https://lucide.dev/guide/packages/lucide-react - Documentation142 *143 * @param {Object} props - Lucide icons props and any valid SVG attribute144 * @returns {JSX.Element} JSX Element145 *146 */147declare const AlarmClockMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;148 149/**150 * @component @name AlarmClockPlus151 * @description Lucide SVG icon component, renders SVG Element with children.152 *153 * @preview  - https://lucide.dev/icons/alarm-clock-plus154 * @see https://lucide.dev/guide/packages/lucide-react - Documentation155 *156 * @param {Object} props - Lucide icons props and any valid SVG attribute157 * @returns {JSX.Element} JSX Element158 *159 */160declare const AlarmClockPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;161 162/**163 * @component @name AlarmClockOff164 * @description Lucide SVG icon component, renders SVG Element with children.165 *166 * @preview  - https://lucide.dev/icons/alarm-clock-off167 * @see https://lucide.dev/guide/packages/lucide-react - Documentation168 *169 * @param {Object} props - Lucide icons props and any valid SVG attribute170 * @returns {JSX.Element} JSX Element171 *172 */173declare const AlarmClockOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;174 175/**176 * @component @name AlarmClock177 * @description Lucide SVG icon component, renders SVG Element with children.178 *179 * @preview  - https://lucide.dev/icons/alarm-clock180 * @see https://lucide.dev/guide/packages/lucide-react - Documentation181 *182 * @param {Object} props - Lucide icons props and any valid SVG attribute183 * @returns {JSX.Element} JSX Element184 *185 */186declare const AlarmClock: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;187 188/**189 * @component @name AlarmSmoke190 * @description Lucide SVG icon component, renders SVG Element with children.191 *192 * @preview  - https://lucide.dev/icons/alarm-smoke193 * @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 AlarmSmoke: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;200 201/**202 * @component @name Album203 * @description Lucide SVG icon component, renders SVG Element with children.204 *205 * @preview  - https://lucide.dev/icons/album206 * @see https://lucide.dev/guide/packages/lucide-react - Documentation207 *208 * @param {Object} props - Lucide icons props and any valid SVG attribute209 * @returns {JSX.Element} JSX Element210 *211 */212declare const Album: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;213 214/**215 * @component @name AlignCenterHorizontal216 * @description Lucide SVG icon component, renders SVG Element with children.217 *218 * @preview  - https://lucide.dev/icons/align-center-horizontal219 * @see https://lucide.dev/guide/packages/lucide-react - Documentation220 *221 * @param {Object} props - Lucide icons props and any valid SVG attribute222 * @returns {JSX.Element} JSX Element223 *224 */225declare const AlignCenterHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;226 227/**228 * @component @name AlignCenterVertical229 * @description Lucide SVG icon component, renders SVG Element with children.230 *231 * @preview  - https://lucide.dev/icons/align-center-vertical232 * @see https://lucide.dev/guide/packages/lucide-react - Documentation233 *234 * @param {Object} props - Lucide icons props and any valid SVG attribute235 * @returns {JSX.Element} JSX Element236 *237 */238declare const AlignCenterVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;239 240/**241 * @component @name AlignEndHorizontal242 * @description Lucide SVG icon component, renders SVG Element with children.243 *244 * @preview  - https://lucide.dev/icons/align-end-horizontal245 * @see https://lucide.dev/guide/packages/lucide-react - Documentation246 *247 * @param {Object} props - Lucide icons props and any valid SVG attribute248 * @returns {JSX.Element} JSX Element249 *250 */251declare const AlignEndHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;252 253/**254 * @component @name AlignEndVertical255 * @description Lucide SVG icon component, renders SVG Element with children.256 *257 * @preview  - https://lucide.dev/icons/align-end-vertical258 * @see https://lucide.dev/guide/packages/lucide-react - Documentation259 *260 * @param {Object} props - Lucide icons props and any valid SVG attribute261 * @returns {JSX.Element} JSX Element262 *263 */264declare const AlignEndVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;265 266/**267 * @component @name AlignHorizontalDistributeCenter268 * @description Lucide SVG icon component, renders SVG Element with children.269 *270 * @preview  - https://lucide.dev/icons/align-horizontal-distribute-center271 * @see https://lucide.dev/guide/packages/lucide-react - Documentation272 *273 * @param {Object} props - Lucide icons props and any valid SVG attribute274 * @returns {JSX.Element} JSX Element275 *276 */277declare const AlignHorizontalDistributeCenter: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;278 279/**280 * @component @name AlignHorizontalDistributeEnd281 * @description Lucide SVG icon component, renders SVG Element with children.282 *283 * @preview  - https://lucide.dev/icons/align-horizontal-distribute-end284 * @see https://lucide.dev/guide/packages/lucide-react - Documentation285 *286 * @param {Object} props - Lucide icons props and any valid SVG attribute287 * @returns {JSX.Element} JSX Element288 *289 */290declare const AlignHorizontalDistributeEnd: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;291 292/**293 * @component @name AlignHorizontalDistributeStart294 * @description Lucide SVG icon component, renders SVG Element with children.295 *296 * @preview  - https://lucide.dev/icons/align-horizontal-distribute-start297 * @see https://lucide.dev/guide/packages/lucide-react - Documentation298 *299 * @param {Object} props - Lucide icons props and any valid SVG attribute300 * @returns {JSX.Element} JSX Element301 *302 */303declare const AlignHorizontalDistributeStart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;304 305/**306 * @component @name AlignHorizontalJustifyCenter307 * @description Lucide SVG icon component, renders SVG Element with children.308 *309 * @preview  - https://lucide.dev/icons/align-horizontal-justify-center310 * @see https://lucide.dev/guide/packages/lucide-react - Documentation311 *312 * @param {Object} props - Lucide icons props and any valid SVG attribute313 * @returns {JSX.Element} JSX Element314 *315 */316declare const AlignHorizontalJustifyCenter: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;317 318/**319 * @component @name AlignHorizontalJustifyEnd320 * @description Lucide SVG icon component, renders SVG Element with children.321 *322 * @preview  - https://lucide.dev/icons/align-horizontal-justify-end323 * @see https://lucide.dev/guide/packages/lucide-react - Documentation324 *325 * @param {Object} props - Lucide icons props and any valid SVG attribute326 * @returns {JSX.Element} JSX Element327 *328 */329declare const AlignHorizontalJustifyEnd: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;330 331/**332 * @component @name AlignHorizontalJustifyStart333 * @description Lucide SVG icon component, renders SVG Element with children.334 *335 * @preview  - https://lucide.dev/icons/align-horizontal-justify-start336 * @see https://lucide.dev/guide/packages/lucide-react - Documentation337 *338 * @param {Object} props - Lucide icons props and any valid SVG attribute339 * @returns {JSX.Element} JSX Element340 *341 */342declare const AlignHorizontalJustifyStart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;343 344/**345 * @component @name AlignHorizontalSpaceAround346 * @description Lucide SVG icon component, renders SVG Element with children.347 *348 * @preview  - https://lucide.dev/icons/align-horizontal-space-around349 * @see https://lucide.dev/guide/packages/lucide-react - Documentation350 *351 * @param {Object} props - Lucide icons props and any valid SVG attribute352 * @returns {JSX.Element} JSX Element353 *354 */355declare const AlignHorizontalSpaceAround: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;356 357/**358 * @component @name AlignHorizontalSpaceBetween359 * @description Lucide SVG icon component, renders SVG Element with children.360 *361 * @preview  - https://lucide.dev/icons/align-horizontal-space-between362 * @see https://lucide.dev/guide/packages/lucide-react - Documentation363 *364 * @param {Object} props - Lucide icons props and any valid SVG attribute365 * @returns {JSX.Element} JSX Element366 *367 */368declare const AlignHorizontalSpaceBetween: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;369 370/**371 * @component @name AlignStartHorizontal372 * @description Lucide SVG icon component, renders SVG Element with children.373 *374 * @preview  - https://lucide.dev/icons/align-start-horizontal375 * @see https://lucide.dev/guide/packages/lucide-react - Documentation376 *377 * @param {Object} props - Lucide icons props and any valid SVG attribute378 * @returns {JSX.Element} JSX Element379 *380 */381declare const AlignStartHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;382 383/**384 * @component @name AlignStartVertical385 * @description Lucide SVG icon component, renders SVG Element with children.386 *387 * @preview  - https://lucide.dev/icons/align-start-vertical388 * @see https://lucide.dev/guide/packages/lucide-react - Documentation389 *390 * @param {Object} props - Lucide icons props and any valid SVG attribute391 * @returns {JSX.Element} JSX Element392 *393 */394declare const AlignStartVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;395 396/**397 * @component @name AlignVerticalDistributeCenter398 * @description Lucide SVG icon component, renders SVG Element with children.399 *400 * @preview  - https://lucide.dev/icons/align-vertical-distribute-center401 * @see https://lucide.dev/guide/packages/lucide-react - Documentation402 *403 * @param {Object} props - Lucide icons props and any valid SVG attribute404 * @returns {JSX.Element} JSX Element405 *406 */407declare const AlignVerticalDistributeCenter: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;408 409/**410 * @component @name AlignVerticalDistributeEnd411 * @description Lucide SVG icon component, renders SVG Element with children.412 *413 * @preview  - https://lucide.dev/icons/align-vertical-distribute-end414 * @see https://lucide.dev/guide/packages/lucide-react - Documentation415 *416 * @param {Object} props - Lucide icons props and any valid SVG attribute417 * @returns {JSX.Element} JSX Element418 *419 */420declare const AlignVerticalDistributeEnd: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;421 422/**423 * @component @name AlignVerticalDistributeStart424 * @description Lucide SVG icon component, renders SVG Element with children.425 *426 * @preview  - https://lucide.dev/icons/align-vertical-distribute-start427 * @see https://lucide.dev/guide/packages/lucide-react - Documentation428 *429 * @param {Object} props - Lucide icons props and any valid SVG attribute430 * @returns {JSX.Element} JSX Element431 *432 */433declare const AlignVerticalDistributeStart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;434 435/**436 * @component @name AlignVerticalJustifyCenter437 * @description Lucide SVG icon component, renders SVG Element with children.438 *439 * @preview  - https://lucide.dev/icons/align-vertical-justify-center440 * @see https://lucide.dev/guide/packages/lucide-react - Documentation441 *442 * @param {Object} props - Lucide icons props and any valid SVG attribute443 * @returns {JSX.Element} JSX Element444 *445 */446declare const AlignVerticalJustifyCenter: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;447 448/**449 * @component @name AlignVerticalJustifyEnd450 * @description Lucide SVG icon component, renders SVG Element with children.451 *452 * @preview  - https://lucide.dev/icons/align-vertical-justify-end453 * @see https://lucide.dev/guide/packages/lucide-react - Documentation454 *455 * @param {Object} props - Lucide icons props and any valid SVG attribute456 * @returns {JSX.Element} JSX Element457 *458 */459declare const AlignVerticalJustifyEnd: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;460 461/**462 * @component @name AlignVerticalJustifyStart463 * @description Lucide SVG icon component, renders SVG Element with children.464 *465 * @preview  - https://lucide.dev/icons/align-vertical-justify-start466 * @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 AlignVerticalJustifyStart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;473 474/**475 * @component @name AlignVerticalSpaceAround476 * @description Lucide SVG icon component, renders SVG Element with children.477 *478 * @preview  - https://lucide.dev/icons/align-vertical-space-around479 * @see https://lucide.dev/guide/packages/lucide-react - Documentation480 *481 * @param {Object} props - Lucide icons props and any valid SVG attribute482 * @returns {JSX.Element} JSX Element483 *484 */485declare const AlignVerticalSpaceAround: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;486 487/**488 * @component @name AlignVerticalSpaceBetween489 * @description Lucide SVG icon component, renders SVG Element with children.490 *491 * @preview  - https://lucide.dev/icons/align-vertical-space-between492 * @see https://lucide.dev/guide/packages/lucide-react - Documentation493 *494 * @param {Object} props - Lucide icons props and any valid SVG attribute495 * @returns {JSX.Element} JSX Element496 *497 */498declare const AlignVerticalSpaceBetween: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;499 500/**501 * @component @name Ambulance502 * @description Lucide SVG icon component, renders SVG Element with children.503 *504 * @preview  - https://lucide.dev/icons/ambulance505 * @see https://lucide.dev/guide/packages/lucide-react - Documentation506 *507 * @param {Object} props - Lucide icons props and any valid SVG attribute508 * @returns {JSX.Element} JSX Element509 *510 */511declare const Ambulance: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;512 513/**514 * @component @name Ampersands515 * @description Lucide SVG icon component, renders SVG Element with children.516 *517 * @preview  - https://lucide.dev/icons/ampersands518 * @see https://lucide.dev/guide/packages/lucide-react - Documentation519 *520 * @param {Object} props - Lucide icons props and any valid SVG attribute521 * @returns {JSX.Element} JSX Element522 *523 */524declare const Ampersands: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;525 526/**527 * @component @name Ampersand528 * @description Lucide SVG icon component, renders SVG Element with children.529 *530 * @preview  - https://lucide.dev/icons/ampersand531 * @see https://lucide.dev/guide/packages/lucide-react - Documentation532 *533 * @param {Object} props - Lucide icons props and any valid SVG attribute534 * @returns {JSX.Element} JSX Element535 *536 */537declare const Ampersand: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;538 539/**540 * @component @name Anchor541 * @description Lucide SVG icon component, renders SVG Element with children.542 *543 * @preview  - https://lucide.dev/icons/anchor544 * @see https://lucide.dev/guide/packages/lucide-react - Documentation545 *546 * @param {Object} props - Lucide icons props and any valid SVG attribute547 * @returns {JSX.Element} JSX Element548 *549 */550declare const Anchor: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;551 552/**553 * @component @name Amphora554 * @description Lucide SVG icon component, renders SVG Element with children.555 *556 * @preview  - https://lucide.dev/icons/amphora557 * @see https://lucide.dev/guide/packages/lucide-react - Documentation558 *559 * @param {Object} props - Lucide icons props and any valid SVG attribute560 * @returns {JSX.Element} JSX Element561 *562 */563declare const Amphora: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;564 565/**566 * @component @name Angry567 * @description Lucide SVG icon component, renders SVG Element with children.568 *569 * @preview  - https://lucide.dev/icons/angry570 * @see https://lucide.dev/guide/packages/lucide-react - Documentation571 *572 * @param {Object} props - Lucide icons props and any valid SVG attribute573 * @returns {JSX.Element} JSX Element574 *575 */576declare const Angry: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;577 578/**579 * @component @name Annoyed580 * @description Lucide SVG icon component, renders SVG Element with children.581 *582 * @preview  - https://lucide.dev/icons/annoyed583 * @see https://lucide.dev/guide/packages/lucide-react - Documentation584 *585 * @param {Object} props - Lucide icons props and any valid SVG attribute586 * @returns {JSX.Element} JSX Element587 *588 */589declare const Annoyed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;590 591/**592 * @component @name Antenna593 * @description Lucide SVG icon component, renders SVG Element with children.594 *595 * @preview  - https://lucide.dev/icons/antenna596 * @see https://lucide.dev/guide/packages/lucide-react - Documentation597 *598 * @param {Object} props - Lucide icons props and any valid SVG attribute599 * @returns {JSX.Element} JSX Element600 *601 */602declare const Antenna: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;603 604/**605 * @component @name Anvil606 * @description Lucide SVG icon component, renders SVG Element with children.607 *608 * @preview  - https://lucide.dev/icons/anvil609 * @see https://lucide.dev/guide/packages/lucide-react - Documentation610 *611 * @param {Object} props - Lucide icons props and any valid SVG attribute612 * @returns {JSX.Element} JSX Element613 *614 */615declare const Anvil: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;616 617/**618 * @component @name Aperture619 * @description Lucide SVG icon component, renders SVG Element with children.620 *621 * @preview  - https://lucide.dev/icons/aperture622 * @see https://lucide.dev/guide/packages/lucide-react - Documentation623 *624 * @param {Object} props - Lucide icons props and any valid SVG attribute625 * @returns {JSX.Element} JSX Element626 *627 */628declare const Aperture: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;629 630/**631 * @component @name AppWindowMac632 * @description Lucide SVG icon component, renders SVG Element with children.633 *634 * @preview  - https://lucide.dev/icons/app-window-mac635 * @see https://lucide.dev/guide/packages/lucide-react - Documentation636 *637 * @param {Object} props - Lucide icons props and any valid SVG attribute638 * @returns {JSX.Element} JSX Element639 *640 */641declare const AppWindowMac: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;642 643/**644 * @component @name AppWindow645 * @description Lucide SVG icon component, renders SVG Element with children.646 *647 * @preview  - https://lucide.dev/icons/app-window648 * @see https://lucide.dev/guide/packages/lucide-react - Documentation649 *650 * @param {Object} props - Lucide icons props and any valid SVG attribute651 * @returns {JSX.Element} JSX Element652 *653 */654declare const AppWindow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;655 656/**657 * @component @name Apple658 * @description Lucide SVG icon component, renders SVG Element with children.659 *660 * @preview  - https://lucide.dev/icons/apple661 * @see https://lucide.dev/guide/packages/lucide-react - Documentation662 *663 * @param {Object} props - Lucide icons props and any valid SVG attribute664 * @returns {JSX.Element} JSX Element665 *666 */667declare const Apple: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;668 669/**670 * @component @name ArchiveRestore671 * @description Lucide SVG icon component, renders SVG Element with children.672 *673 * @preview  - https://lucide.dev/icons/archive-restore674 * @see https://lucide.dev/guide/packages/lucide-react - Documentation675 *676 * @param {Object} props - Lucide icons props and any valid SVG attribute677 * @returns {JSX.Element} JSX Element678 *679 */680declare const ArchiveRestore: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;681 682/**683 * @component @name ArchiveX684 * @description Lucide SVG icon component, renders SVG Element with children.685 *686 * @preview  - https://lucide.dev/icons/archive-x687 * @see https://lucide.dev/guide/packages/lucide-react - Documentation688 *689 * @param {Object} props - Lucide icons props and any valid SVG attribute690 * @returns {JSX.Element} JSX Element691 *692 */693declare const ArchiveX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;694 695/**696 * @component @name Archive697 * @description Lucide SVG icon component, renders SVG Element with children.698 *699 * @preview  - https://lucide.dev/icons/archive700 * @see https://lucide.dev/guide/packages/lucide-react - Documentation701 *702 * @param {Object} props - Lucide icons props and any valid SVG attribute703 * @returns {JSX.Element} JSX Element704 *705 */706declare const Archive: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;707 708/**709 * @component @name Armchair710 * @description Lucide SVG icon component, renders SVG Element with children.711 *712 * @preview  - https://lucide.dev/icons/armchair713 * @see https://lucide.dev/guide/packages/lucide-react - Documentation714 *715 * @param {Object} props - Lucide icons props and any valid SVG attribute716 * @returns {JSX.Element} JSX Element717 *718 */719declare const Armchair: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;720 721/**722 * @component @name ArrowBigDownDash723 * @description Lucide SVG icon component, renders SVG Element with children.724 *725 * @preview  - https://lucide.dev/icons/arrow-big-down-dash726 * @see https://lucide.dev/guide/packages/lucide-react - Documentation727 *728 * @param {Object} props - Lucide icons props and any valid SVG attribute729 * @returns {JSX.Element} JSX Element730 *731 */732declare const ArrowBigDownDash: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;733 734/**735 * @component @name ArrowBigDown736 * @description Lucide SVG icon component, renders SVG Element with children.737 *738 * @preview  - https://lucide.dev/icons/arrow-big-down739 * @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 ArrowBigDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;746 747/**748 * @component @name ArrowBigLeft749 * @description Lucide SVG icon component, renders SVG Element with children.750 *751 * @preview  - https://lucide.dev/icons/arrow-big-left752 * @see https://lucide.dev/guide/packages/lucide-react - Documentation753 *754 * @param {Object} props - Lucide icons props and any valid SVG attribute755 * @returns {JSX.Element} JSX Element756 *757 */758declare const ArrowBigLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;759 760/**761 * @component @name ArrowBigLeftDash762 * @description Lucide SVG icon component, renders SVG Element with children.763 *764 * @preview  - https://lucide.dev/icons/arrow-big-left-dash765 * @see https://lucide.dev/guide/packages/lucide-react - Documentation766 *767 * @param {Object} props - Lucide icons props and any valid SVG attribute768 * @returns {JSX.Element} JSX Element769 *770 */771declare const ArrowBigLeftDash: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;772 773/**774 * @component @name ArrowBigRightDash775 * @description Lucide SVG icon component, renders SVG Element with children.776 *777 * @preview  - https://lucide.dev/icons/arrow-big-right-dash778 * @see https://lucide.dev/guide/packages/lucide-react - Documentation779 *780 * @param {Object} props - Lucide icons props and any valid SVG attribute781 * @returns {JSX.Element} JSX Element782 *783 */784declare const ArrowBigRightDash: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;785 786/**787 * @component @name ArrowBigRight788 * @description Lucide SVG icon component, renders SVG Element with children.789 *790 * @preview  - https://lucide.dev/icons/arrow-big-right791 * @see https://lucide.dev/guide/packages/lucide-react - Documentation792 *793 * @param {Object} props - Lucide icons props and any valid SVG attribute794 * @returns {JSX.Element} JSX Element795 *796 */797declare const ArrowBigRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;798 799/**800 * @component @name ArrowBigUpDash801 * @description Lucide SVG icon component, renders SVG Element with children.802 *803 * @preview  - https://lucide.dev/icons/arrow-big-up-dash804 * @see https://lucide.dev/guide/packages/lucide-react - Documentation805 *806 * @param {Object} props - Lucide icons props and any valid SVG attribute807 * @returns {JSX.Element} JSX Element808 *809 */810declare const ArrowBigUpDash: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;811 812/**813 * @component @name ArrowBigUp814 * @description Lucide SVG icon component, renders SVG Element with children.815 *816 * @preview  - https://lucide.dev/icons/arrow-big-up817 * @see https://lucide.dev/guide/packages/lucide-react - Documentation818 *819 * @param {Object} props - Lucide icons props and any valid SVG attribute820 * @returns {JSX.Element} JSX Element821 *822 */823declare const ArrowBigUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;824 825/**826 * @component @name ArrowDown01827 * @description Lucide SVG icon component, renders SVG Element with children.828 *829 * @preview  - https://lucide.dev/icons/arrow-down-0-1830 * @see https://lucide.dev/guide/packages/lucide-react - Documentation831 *832 * @param {Object} props - Lucide icons props and any valid SVG attribute833 * @returns {JSX.Element} JSX Element834 *835 */836declare const ArrowDown01: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;837 838/**839 * @component @name ArrowDown10840 * @description Lucide SVG icon component, renders SVG Element with children.841 *842 * @preview  - https://lucide.dev/icons/arrow-down-1-0843 * @see https://lucide.dev/guide/packages/lucide-react - Documentation844 *845 * @param {Object} props - Lucide icons props and any valid SVG attribute846 * @returns {JSX.Element} JSX Element847 *848 */849declare const ArrowDown10: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;850 851/**852 * @component @name ArrowDownAZ853 * @description Lucide SVG icon component, renders SVG Element with children.854 *855 * @preview  - https://lucide.dev/icons/arrow-down-a-z856 * @see https://lucide.dev/guide/packages/lucide-react - Documentation857 *858 * @param {Object} props - Lucide icons props and any valid SVG attribute859 * @returns {JSX.Element} JSX Element860 *861 */862declare const ArrowDownAZ: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;863 864/**865 * @component @name ArrowDownFromLine866 * @description Lucide SVG icon component, renders SVG Element with children.867 *868 * @preview  - https://lucide.dev/icons/arrow-down-from-line869 * @see https://lucide.dev/guide/packages/lucide-react - Documentation870 *871 * @param {Object} props - Lucide icons props and any valid SVG attribute872 * @returns {JSX.Element} JSX Element873 *874 */875declare const ArrowDownFromLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;876 877/**878 * @component @name ArrowDownLeft879 * @description Lucide SVG icon component, renders SVG Element with children.880 *881 * @preview  - https://lucide.dev/icons/arrow-down-left882 * @see https://lucide.dev/guide/packages/lucide-react - Documentation883 *884 * @param {Object} props - Lucide icons props and any valid SVG attribute885 * @returns {JSX.Element} JSX Element886 *887 */888declare const ArrowDownLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;889 890/**891 * @component @name ArrowDownNarrowWide892 * @description Lucide SVG icon component, renders SVG Element with children.893 *894 * @preview  - https://lucide.dev/icons/arrow-down-narrow-wide895 * @see https://lucide.dev/guide/packages/lucide-react - Documentation896 *897 * @param {Object} props - Lucide icons props and any valid SVG attribute898 * @returns {JSX.Element} JSX Element899 *900 */901declare const ArrowDownNarrowWide: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;902 903/**904 * @component @name ArrowDownRight905 * @description Lucide SVG icon component, renders SVG Element with children.906 *907 * @preview  - https://lucide.dev/icons/arrow-down-right908 * @see https://lucide.dev/guide/packages/lucide-react - Documentation909 *910 * @param {Object} props - Lucide icons props and any valid SVG attribute911 * @returns {JSX.Element} JSX Element912 *913 */914declare const ArrowDownRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;915 916/**917 * @component @name ArrowDownToDot918 * @description Lucide SVG icon component, renders SVG Element with children.919 *920 * @preview  - https://lucide.dev/icons/arrow-down-to-dot921 * @see https://lucide.dev/guide/packages/lucide-react - Documentation922 *923 * @param {Object} props - Lucide icons props and any valid SVG attribute924 * @returns {JSX.Element} JSX Element925 *926 */927declare const ArrowDownToDot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;928 929/**930 * @component @name ArrowDownToLine931 * @description Lucide SVG icon component, renders SVG Element with children.932 *933 * @preview  - https://lucide.dev/icons/arrow-down-to-line934 * @see https://lucide.dev/guide/packages/lucide-react - Documentation935 *936 * @param {Object} props - Lucide icons props and any valid SVG attribute937 * @returns {JSX.Element} JSX Element938 *939 */940declare const ArrowDownToLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;941 942/**943 * @component @name ArrowDownUp944 * @description Lucide SVG icon component, renders SVG Element with children.945 *946 * @preview  - https://lucide.dev/icons/arrow-down-up947 * @see https://lucide.dev/guide/packages/lucide-react - Documentation948 *949 * @param {Object} props - Lucide icons props and any valid SVG attribute950 * @returns {JSX.Element} JSX Element951 *952 */953declare const ArrowDownUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;954 955/**956 * @component @name ArrowDownWideNarrow957 * @description Lucide SVG icon component, renders SVG Element with children.958 *959 * @preview  - https://lucide.dev/icons/arrow-down-wide-narrow960 * @see https://lucide.dev/guide/packages/lucide-react - Documentation961 *962 * @param {Object} props - Lucide icons props and any valid SVG attribute963 * @returns {JSX.Element} JSX Element964 *965 */966declare const ArrowDownWideNarrow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;967 968/**969 * @component @name ArrowDownZA970 * @description Lucide SVG icon component, renders SVG Element with children.971 *972 * @preview  - https://lucide.dev/icons/arrow-down-z-a973 * @see https://lucide.dev/guide/packages/lucide-react - Documentation974 *975 * @param {Object} props - Lucide icons props and any valid SVG attribute976 * @returns {JSX.Element} JSX Element977 *978 */979declare const ArrowDownZA: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;980 981/**982 * @component @name ArrowLeftFromLine983 * @description Lucide SVG icon component, renders SVG Element with children.984 *985 * @preview  - https://lucide.dev/icons/arrow-left-from-line986 * @see https://lucide.dev/guide/packages/lucide-react - Documentation987 *988 * @param {Object} props - Lucide icons props and any valid SVG attribute989 * @returns {JSX.Element} JSX Element990 *991 */992declare const ArrowLeftFromLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;993 994/**995 * @component @name ArrowDown996 * @description Lucide SVG icon component, renders SVG Element with children.997 *998 * @preview  - https://lucide.dev/icons/arrow-down999 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1000 *1001 * @param {Object} props - Lucide icons props and any valid SVG attribute1002 * @returns {JSX.Element} JSX Element1003 *1004 */1005declare const ArrowDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1006 1007/**1008 * @component @name ArrowLeftRight1009 * @description Lucide SVG icon component, renders SVG Element with children.1010 *1011 * @preview  - https://lucide.dev/icons/arrow-left-right1012 * @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 ArrowLeftRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1019 1020/**1021 * @component @name ArrowLeftToLine1022 * @description Lucide SVG icon component, renders SVG Element with children.1023 *1024 * @preview  - https://lucide.dev/icons/arrow-left-to-line1025 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1026 *1027 * @param {Object} props - Lucide icons props and any valid SVG attribute1028 * @returns {JSX.Element} JSX Element1029 *1030 */1031declare const ArrowLeftToLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1032 1033/**1034 * @component @name ArrowLeft1035 * @description Lucide SVG icon component, renders SVG Element with children.1036 *1037 * @preview  - https://lucide.dev/icons/arrow-left1038 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1039 *1040 * @param {Object} props - Lucide icons props and any valid SVG attribute1041 * @returns {JSX.Element} JSX Element1042 *1043 */1044declare const ArrowLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1045 1046/**1047 * @component @name ArrowRightFromLine1048 * @description Lucide SVG icon component, renders SVG Element with children.1049 *1050 * @preview  - https://lucide.dev/icons/arrow-right-from-line1051 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1052 *1053 * @param {Object} props - Lucide icons props and any valid SVG attribute1054 * @returns {JSX.Element} JSX Element1055 *1056 */1057declare const ArrowRightFromLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1058 1059/**1060 * @component @name ArrowRightLeft1061 * @description Lucide SVG icon component, renders SVG Element with children.1062 *1063 * @preview  - https://lucide.dev/icons/arrow-right-left1064 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1065 *1066 * @param {Object} props - Lucide icons props and any valid SVG attribute1067 * @returns {JSX.Element} JSX Element1068 *1069 */1070declare const ArrowRightLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1071 1072/**1073 * @component @name ArrowRightToLine1074 * @description Lucide SVG icon component, renders SVG Element with children.1075 *1076 * @preview  - https://lucide.dev/icons/arrow-right-to-line1077 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1078 *1079 * @param {Object} props - Lucide icons props and any valid SVG attribute1080 * @returns {JSX.Element} JSX Element1081 *1082 */1083declare const ArrowRightToLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1084 1085/**1086 * @component @name ArrowRight1087 * @description Lucide SVG icon component, renders SVG Element with children.1088 *1089 * @preview  - https://lucide.dev/icons/arrow-right1090 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1091 *1092 * @param {Object} props - Lucide icons props and any valid SVG attribute1093 * @returns {JSX.Element} JSX Element1094 *1095 */1096declare const ArrowRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1097 1098/**1099 * @component @name ArrowUp011100 * @description Lucide SVG icon component, renders SVG Element with children.1101 *1102 * @preview  - https://lucide.dev/icons/arrow-up-0-11103 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1104 *1105 * @param {Object} props - Lucide icons props and any valid SVG attribute1106 * @returns {JSX.Element} JSX Element1107 *1108 */1109declare const ArrowUp01: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1110 1111/**1112 * @component @name ArrowUp101113 * @description Lucide SVG icon component, renders SVG Element with children.1114 *1115 * @preview  - https://lucide.dev/icons/arrow-up-1-01116 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1117 *1118 * @param {Object} props - Lucide icons props and any valid SVG attribute1119 * @returns {JSX.Element} JSX Element1120 *1121 */1122declare const ArrowUp10: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1123 1124/**1125 * @component @name ArrowUpAZ1126 * @description Lucide SVG icon component, renders SVG Element with children.1127 *1128 * @preview  - https://lucide.dev/icons/arrow-up-a-z1129 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1130 *1131 * @param {Object} props - Lucide icons props and any valid SVG attribute1132 * @returns {JSX.Element} JSX Element1133 *1134 */1135declare const ArrowUpAZ: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1136 1137/**1138 * @component @name ArrowUpDown1139 * @description Lucide SVG icon component, renders SVG Element with children.1140 *1141 * @preview  - https://lucide.dev/icons/arrow-up-down1142 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1143 *1144 * @param {Object} props - Lucide icons props and any valid SVG attribute1145 * @returns {JSX.Element} JSX Element1146 *1147 */1148declare const ArrowUpDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1149 1150/**1151 * @component @name ArrowUpFromDot1152 * @description Lucide SVG icon component, renders SVG Element with children.1153 *1154 * @preview  - https://lucide.dev/icons/arrow-up-from-dot1155 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1156 *1157 * @param {Object} props - Lucide icons props and any valid SVG attribute1158 * @returns {JSX.Element} JSX Element1159 *1160 */1161declare const ArrowUpFromDot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1162 1163/**1164 * @component @name ArrowUpFromLine1165 * @description Lucide SVG icon component, renders SVG Element with children.1166 *1167 * @preview  - https://lucide.dev/icons/arrow-up-from-line1168 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1169 *1170 * @param {Object} props - Lucide icons props and any valid SVG attribute1171 * @returns {JSX.Element} JSX Element1172 *1173 */1174declare const ArrowUpFromLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1175 1176/**1177 * @component @name ArrowUpLeft1178 * @description Lucide SVG icon component, renders SVG Element with children.1179 *1180 * @preview  - https://lucide.dev/icons/arrow-up-left1181 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1182 *1183 * @param {Object} props - Lucide icons props and any valid SVG attribute1184 * @returns {JSX.Element} JSX Element1185 *1186 */1187declare const ArrowUpLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;1188 1189/**1190 * @component @name ArrowUpNarrowWide1191 * @description Lucide SVG icon component, renders SVG Element with children.1192 *1193 * @preview  - https://lucide.dev/icons/arrow-up-narrow-wide1194 * @see https://lucide.dev/guide/packages/lucide-react - Documentation1195 *1196 * @param {Object} props - Lucide icons props and any valid SVG attribute1197 * @returns {JSX.Element} JSX Element1198 *1199 */1200declare const ArrowUpNarrowWide: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;