21620 lines
1.9 MiB
TypeScript
21620 lines
1.9 MiB
TypeScript
|
|
import * as react from 'react';
|
||
|
|
import { ReactSVG, SVGProps, ForwardRefExoticComponent, RefAttributes } from 'react';
|
||
|
|
|
||
|
|
type IconNode = [elementName: keyof ReactSVG, attrs: Record<string, string>][];
|
||
|
|
type SVGAttributes = Partial<SVGProps<SVGSVGElement>>;
|
||
|
|
type ElementAttributes = RefAttributes<SVGSVGElement> & SVGAttributes;
|
||
|
|
interface LucideProps extends ElementAttributes {
|
||
|
|
size?: string | number;
|
||
|
|
absoluteStrokeWidth?: boolean;
|
||
|
|
}
|
||
|
|
type LucideIcon = ForwardRefExoticComponent<Omit<LucideProps, 'ref'> & RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AArrowDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/a-arrow-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AArrowDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AArrowUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/a-arrow-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AArrowUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ALargeSmall
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/a-large-small
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ALargeSmall: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Accessibility
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/accessibility
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Accessibility: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Activity
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/activity
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Activity: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AirVent
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/air-vent
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AirVent: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Airplay
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/airplay
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Airplay: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlarmClockCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/alarm-clock-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlarmClockCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlarmClockMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/alarm-clock-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlarmClockMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlarmClockOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/alarm-clock-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlarmClockOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlarmClockPlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/alarm-clock-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlarmClockPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlarmClock
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/alarm-clock
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlarmClock: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlarmSmoke
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/alarm-smoke
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlarmSmoke: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Album
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/album
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Album: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignCenterHorizontal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-center-horizontal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignCenterHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignCenterVertical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-center-vertical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignCenterVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignCenter
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-center
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignCenter: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignEndHorizontal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-end-horizontal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignEndHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignEndVertical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-end-vertical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignEndVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignHorizontalDistributeCenter
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-horizontal-distribute-center
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignHorizontalDistributeCenter: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignHorizontalDistributeEnd
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-horizontal-distribute-end
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignHorizontalDistributeEnd: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignHorizontalDistributeStart
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-horizontal-distribute-start
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignHorizontalDistributeStart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignHorizontalJustifyCenter
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-horizontal-justify-center
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignHorizontalJustifyCenter: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignHorizontalJustifyEnd
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-horizontal-justify-end
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignHorizontalJustifyEnd: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignHorizontalJustifyStart
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-horizontal-justify-start
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignHorizontalJustifyStart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignHorizontalSpaceAround
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-horizontal-space-around
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignHorizontalSpaceAround: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignHorizontalSpaceBetween
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-horizontal-space-between
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignHorizontalSpaceBetween: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignJustify
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-justify
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignJustify: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignStartHorizontal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-start-horizontal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignStartHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignStartVertical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-start-vertical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignStartVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignVerticalDistributeCenter
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-vertical-distribute-center
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignVerticalDistributeCenter: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignVerticalDistributeEnd
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-vertical-distribute-end
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignVerticalDistributeEnd: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignVerticalDistributeStart
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-vertical-distribute-start
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignVerticalDistributeStart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignVerticalJustifyCenter
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-vertical-justify-center
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignVerticalJustifyCenter: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignVerticalJustifyEnd
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-vertical-justify-end
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignVerticalJustifyEnd: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignVerticalJustifyStart
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-vertical-justify-start
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignVerticalJustifyStart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignVerticalSpaceAround
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-vertical-space-around
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignVerticalSpaceAround: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AlignVerticalSpaceBetween
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/align-vertical-space-between
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AlignVerticalSpaceBetween: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Ambulance
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ambulance
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Ambulance: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Ampersand
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ampersand
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Ampersand: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Ampersands
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ampersands
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Ampersands: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Amphora
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/amphora
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Amphora: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Anchor
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/anchor
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Anchor: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Angry
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/angry
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Angry: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Annoyed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/annoyed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Annoyed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Antenna
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/antenna
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Antenna: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Anvil
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/anvil
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Anvil: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Aperture
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/aperture
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Aperture: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AppWindowMac
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/app-window-mac
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AppWindowMac: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AppWindow
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/app-window
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AppWindow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Apple
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/apple
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Apple: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArchiveRestore
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/archive-restore
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArchiveRestore: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArchiveX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/archive-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArchiveX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Archive
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/archive
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Archive: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Armchair
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/armchair
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Armchair: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowBigDownDash
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-big-down-dash
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowBigDownDash: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowBigDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-big-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowBigDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowBigLeftDash
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-big-left-dash
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowBigLeftDash: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowBigLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-big-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowBigLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowBigRightDash
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-big-right-dash
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowBigRightDash: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowBigRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-big-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowBigRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowBigUpDash
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-big-up-dash
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowBigUpDash: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowBigUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-big-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowBigUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowDown01
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-down-0-1
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowDown01: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowDown10
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-down-1-0
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowDown10: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowDownAZ
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-down-a-z
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowDownAZ: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowDownFromLine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-down-from-line
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowDownFromLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowDownLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-down-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowDownLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowDownNarrowWide
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-down-narrow-wide
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowDownNarrowWide: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowDownRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-down-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowDownRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowDownToDot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-down-to-dot
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowDownToDot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowDownToLine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-down-to-line
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowDownToLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowDownUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-down-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowDownUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowDownWideNarrow
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-down-wide-narrow
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowDownWideNarrow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowDownZA
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-down-z-a
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowDownZA: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowLeftFromLine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-left-from-line
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowLeftFromLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowLeftRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-left-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowLeftRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowLeftToLine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-left-to-line
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowLeftToLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowRightFromLine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-right-from-line
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowRightFromLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowRightLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-right-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowRightLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowRightToLine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-right-to-line
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowRightToLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowUp01
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-up-0-1
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowUp01: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowUp10
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-up-1-0
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowUp10: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowUpAZ
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-up-a-z
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowUpAZ: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowUpDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-up-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowUpDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowUpFromDot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-up-from-dot
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowUpFromDot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowUpFromLine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-up-from-line
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowUpFromLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowUpLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-up-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowUpLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowUpNarrowWide
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-up-narrow-wide
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowUpNarrowWide: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowUpRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-up-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowUpRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowUpToLine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-up-to-line
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowUpToLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowUpWideNarrow
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-up-wide-narrow
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowUpWideNarrow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowUpZA
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-up-z-a
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowUpZA: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrow-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ArrowsUpFromLine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/arrows-up-from-line
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ArrowsUpFromLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Asterisk
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/asterisk
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Asterisk: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AtSign
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/at-sign
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AtSign: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Atom
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/atom
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Atom: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AudioLines
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/audio-lines
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AudioLines: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name AudioWaveform
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/audio-waveform
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const AudioWaveform: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Award
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/award
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Award: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Axe
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/axe
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Axe: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Axis3d
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/axis-3d
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Axis3d: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Baby
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/baby
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Baby: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Backpack
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/backpack
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Backpack: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BadgeAlert
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/badge-alert
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BadgeAlert: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BadgeCent
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/badge-cent
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BadgeCent: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BadgeCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/badge-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BadgeCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BadgeDollarSign
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/badge-dollar-sign
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BadgeDollarSign: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BadgeEuro
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/badge-euro
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BadgeEuro: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BadgeHelp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/badge-help
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BadgeHelp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BadgeIndianRupee
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/badge-indian-rupee
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BadgeIndianRupee: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BadgeInfo
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/badge-info
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BadgeInfo: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BadgeJapaneseYen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/badge-japanese-yen
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BadgeJapaneseYen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BadgeMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/badge-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BadgeMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BadgePercent
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/badge-percent
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BadgePercent: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BadgePlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/badge-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BadgePlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BadgePoundSterling
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/badge-pound-sterling
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BadgePoundSterling: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BadgeRussianRuble
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/badge-russian-ruble
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BadgeRussianRuble: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BadgeSwissFranc
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/badge-swiss-franc
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BadgeSwissFranc: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BadgeX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/badge-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BadgeX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Badge
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/badge
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Badge: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BaggageClaim
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/baggage-claim
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BaggageClaim: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Ban
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ban
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Ban: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Banana
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/banana
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Banana: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Bandage
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bandage
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Bandage: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Banknote
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/banknote
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Banknote: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Barcode
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/barcode
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Barcode: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Baseline
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/baseline
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Baseline: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Bath
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bath
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Bath: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BatteryCharging
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/battery-charging
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BatteryCharging: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BatteryFull
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/battery-full
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BatteryFull: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BatteryLow
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/battery-low
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BatteryLow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BatteryMedium
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/battery-medium
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BatteryMedium: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BatteryWarning
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/battery-warning
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BatteryWarning: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Battery
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/battery
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Battery: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Beaker
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/beaker
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Beaker: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BeanOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bean-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BeanOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Bean
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bean
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Bean: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BedDouble
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bed-double
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BedDouble: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BedSingle
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bed-single
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BedSingle: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Bed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Bed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Beef
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/beef
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Beef: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BeerOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/beer-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BeerOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Beer
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/beer
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Beer: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BellDot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bell-dot
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BellDot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BellElectric
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bell-electric
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BellElectric: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BellMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bell-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BellMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BellOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bell-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BellOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BellPlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bell-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BellPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BellRing
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bell-ring
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BellRing: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Bell
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bell
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Bell: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BetweenHorizontalEnd
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/between-horizontal-end
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BetweenHorizontalEnd: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BetweenHorizontalStart
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/between-horizontal-start
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BetweenHorizontalStart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BetweenVerticalEnd
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/between-vertical-end
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BetweenVerticalEnd: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BetweenVerticalStart
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/between-vertical-start
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BetweenVerticalStart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BicepsFlexed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/biceps-flexed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BicepsFlexed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Bike
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bike
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Bike: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Binary
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/binary
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Binary: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Binoculars
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/binoculars
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Binoculars: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Biohazard
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/biohazard
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Biohazard: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Bird
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bird
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Bird: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Bitcoin
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bitcoin
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Bitcoin: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Blend
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/blend
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Blend: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Blinds
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/blinds
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Blinds: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Blocks
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/blocks
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Blocks: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BluetoothConnected
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bluetooth-connected
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BluetoothConnected: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BluetoothOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bluetooth-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BluetoothOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BluetoothSearching
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bluetooth-searching
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BluetoothSearching: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Bluetooth
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bluetooth
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Bluetooth: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Bold
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bold
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Bold: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Bolt
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bolt
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Bolt: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Bomb
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bomb
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Bomb: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Bone
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bone
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Bone: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookA
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-a
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookA: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookAudio
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-audio
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookAudio: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookCopy
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-copy
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookCopy: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookDashed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-dashed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookDashed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookHeadphones
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-headphones
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookHeadphones: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookHeart
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-heart
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookHeart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookImage
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-image
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookImage: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookKey
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-key
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookKey: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookLock
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-lock
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookLock: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookMarked
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-marked
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookMarked: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookOpenCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-open-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookOpenCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookOpenText
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-open-text
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookOpenText: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookOpen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-open
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookOpen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookPlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookText
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-text
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookText: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookType
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-type
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookType: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookUp2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-up-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookUp2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookUser
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-user
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookUser: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Book
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/book
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Book: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookmarkCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bookmark-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookmarkCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookmarkMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bookmark-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookmarkMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookmarkPlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bookmark-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookmarkPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BookmarkX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bookmark-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BookmarkX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Bookmark
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bookmark
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Bookmark: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BoomBox
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/boom-box
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BoomBox: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BotMessageSquare
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bot-message-square
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BotMessageSquare: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BotOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bot-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BotOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Bot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bot
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Bot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Box
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/box
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Box: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Boxes
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/boxes
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Boxes: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Braces
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/braces
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Braces: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Brackets
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/brackets
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Brackets: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BrainCircuit
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/brain-circuit
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BrainCircuit: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BrainCog
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/brain-cog
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BrainCog: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Brain
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/brain
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Brain: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BrickWall
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/brick-wall
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BrickWall: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BriefcaseBusiness
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/briefcase-business
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BriefcaseBusiness: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BriefcaseConveyorBelt
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/briefcase-conveyor-belt
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BriefcaseConveyorBelt: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BriefcaseMedical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/briefcase-medical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BriefcaseMedical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Briefcase
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/briefcase
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Briefcase: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BringToFront
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bring-to-front
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BringToFront: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Brush
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/brush
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Brush: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BugOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bug-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BugOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BugPlay
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bug-play
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BugPlay: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Bug
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bug
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Bug: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Building2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/building-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Building2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Building
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/building
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Building: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name BusFront
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bus-front
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const BusFront: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Bus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/bus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Bus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CableCar
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cable-car
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CableCar: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Cable
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cable
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Cable: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CakeSlice
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cake-slice
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CakeSlice: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Cake
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cake
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Cake: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Calculator
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calculator
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Calculator: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Calendar1
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-1
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Calendar1: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarArrowDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-arrow-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarArrowDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarArrowUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-arrow-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarArrowUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarCheck2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-check-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarCheck2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarClock
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-clock
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarClock: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarCog
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-cog
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarCog: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarDays
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-days
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarDays: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarFold
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-fold
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarFold: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarHeart
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-heart
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarHeart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarMinus2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-minus-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarMinus2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarPlus2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-plus-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarPlus2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarPlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarRange
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-range
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarRange: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarSearch
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-search
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarSearch: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarSync
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-sync
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarSync: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarX2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-x-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarX2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CalendarX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CalendarX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Calendar
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/calendar
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Calendar: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CameraOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/camera-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CameraOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Camera
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/camera
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Camera: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CandyCane
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/candy-cane
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CandyCane: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CandyOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/candy-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CandyOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Candy
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/candy
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Candy: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Cannabis
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cannabis
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Cannabis: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CaptionsOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/captions-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CaptionsOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Captions
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/captions
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Captions: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CarFront
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/car-front
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CarFront: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CarTaxiFront
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/car-taxi-front
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CarTaxiFront: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Car
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/car
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Car: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Caravan
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/caravan
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Caravan: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Carrot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/carrot
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Carrot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CaseLower
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/case-lower
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CaseLower: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CaseSensitive
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/case-sensitive
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CaseSensitive: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CaseUpper
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/case-upper
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CaseUpper: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CassetteTape
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cassette-tape
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CassetteTape: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Cast
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cast
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Cast: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Castle
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/castle
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Castle: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Cat
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cat
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Cat: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Cctv
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cctv
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Cctv: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartArea
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-area
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartArea: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartBarBig
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-bar-big
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartBarBig: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartBarDecreasing
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-bar-decreasing
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartBarDecreasing: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartBarIncreasing
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-bar-increasing
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartBarIncreasing: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartBarStacked
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-bar-stacked
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartBarStacked: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartBar
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-bar
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartBar: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartCandlestick
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-candlestick
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartCandlestick: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartColumnBig
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-column-big
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartColumnBig: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartColumnDecreasing
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-column-decreasing
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartColumnDecreasing: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartColumnIncreasing
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-column-increasing
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartColumnIncreasing: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartColumnStacked
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-column-stacked
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartColumnStacked: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartColumn
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-column
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartColumn: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartGantt
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-gantt
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartGantt: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartLine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-line
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartNetwork
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-network
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartNetwork: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartNoAxesColumnDecreasing
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-no-axes-column-decreasing
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartNoAxesColumnDecreasing: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartNoAxesColumnIncreasing
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-no-axes-column-increasing
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartNoAxesColumnIncreasing: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartNoAxesColumn
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-no-axes-column
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartNoAxesColumn: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartNoAxesCombined
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-no-axes-combined
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartNoAxesCombined: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartNoAxesGantt
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-no-axes-gantt
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartNoAxesGantt: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartPie
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-pie
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartPie: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartScatter
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-scatter
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartScatter: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChartSpline
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chart-spline
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChartSpline: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CheckCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/check-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CheckCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Check
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Check: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChefHat
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chef-hat
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChefHat: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Cherry
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cherry
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Cherry: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChevronDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chevron-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChevronDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChevronFirst
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chevron-first
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChevronFirst: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChevronLast
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chevron-last
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChevronLast: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChevronLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chevron-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChevronLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChevronRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chevron-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChevronRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChevronUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chevron-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChevronUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChevronsDownUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chevrons-down-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChevronsDownUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChevronsDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chevrons-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChevronsDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChevronsLeftRightEllipsis
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chevrons-left-right-ellipsis
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChevronsLeftRightEllipsis: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChevronsLeftRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chevrons-left-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChevronsLeftRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChevronsLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chevrons-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChevronsLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChevronsRightLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chevrons-right-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChevronsRightLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChevronsRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chevrons-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChevronsRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChevronsUpDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chevrons-up-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChevronsUpDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ChevronsUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chevrons-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ChevronsUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Chrome
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/chrome
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=chrome instead. This icon will be removed in v1.0
|
||
|
|
*/
|
||
|
|
declare const Chrome: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Church
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/church
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Church: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CigaretteOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cigarette-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CigaretteOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Cigarette
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cigarette
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Cigarette: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleAlert
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-alert
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleAlert: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleArrowDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-arrow-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleArrowDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleArrowLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-arrow-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleArrowLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleArrowOutDownLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-arrow-out-down-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleArrowOutDownLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleArrowOutDownRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-arrow-out-down-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleArrowOutDownRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleArrowOutUpLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-arrow-out-up-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleArrowOutUpLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleArrowOutUpRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-arrow-out-up-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleArrowOutUpRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleArrowRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-arrow-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleArrowRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleArrowUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-arrow-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleArrowUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleCheckBig
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-check-big
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleCheckBig: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleChevronDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-chevron-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleChevronDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleChevronLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-chevron-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleChevronLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleChevronRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-chevron-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleChevronRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleChevronUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-chevron-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleChevronUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleDashed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-dashed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleDashed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleDivide
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-divide
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleDivide: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleDollarSign
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-dollar-sign
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleDollarSign: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleDotDashed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-dot-dashed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleDotDashed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleDot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-dot
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleDot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleEllipsis
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-ellipsis
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleEllipsis: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleEqual
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-equal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleEqual: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleFadingArrowUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-fading-arrow-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleFadingArrowUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleFadingPlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-fading-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleFadingPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleGauge
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-gauge
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleGauge: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleHelp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-help
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleHelp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleParkingOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-parking-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleParkingOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleParking
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-parking
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleParking: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CirclePause
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-pause
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CirclePause: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CirclePercent
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-percent
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CirclePercent: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CirclePlay
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-play
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CirclePlay: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CirclePlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CirclePlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CirclePower
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-power
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CirclePower: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleSlash2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-slash-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleSlash2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleSlash
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-slash
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleSlash: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleStop
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-stop
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleStop: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleUserRound
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-user-round
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleUserRound: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleUser
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-user
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleUser: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircleX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircleX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Circle
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circle
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Circle: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CircuitBoard
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/circuit-board
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CircuitBoard: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Citrus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/citrus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Citrus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Clapperboard
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clapperboard
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Clapperboard: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ClipboardCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clipboard-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ClipboardCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ClipboardCopy
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clipboard-copy
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ClipboardCopy: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ClipboardList
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clipboard-list
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ClipboardList: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ClipboardMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clipboard-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ClipboardMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ClipboardPaste
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clipboard-paste
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ClipboardPaste: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ClipboardPenLine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clipboard-pen-line
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ClipboardPenLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ClipboardPen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clipboard-pen
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ClipboardPen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ClipboardPlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clipboard-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ClipboardPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ClipboardType
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clipboard-type
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ClipboardType: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ClipboardX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clipboard-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ClipboardX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Clipboard
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clipboard
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Clipboard: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Clock1
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clock-1
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Clock1: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Clock10
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clock-10
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Clock10: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Clock11
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clock-11
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Clock11: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Clock12
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clock-12
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Clock12: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Clock2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clock-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Clock2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Clock3
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clock-3
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Clock3: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Clock4
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clock-4
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Clock4: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Clock5
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clock-5
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Clock5: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Clock6
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clock-6
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Clock6: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Clock7
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clock-7
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Clock7: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Clock8
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clock-8
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Clock8: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Clock9
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clock-9
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Clock9: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ClockAlert
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clock-alert
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ClockAlert: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ClockArrowDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clock-arrow-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ClockArrowDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ClockArrowUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clock-arrow-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ClockArrowUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Clock
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clock
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Clock: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CloudAlert
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cloud-alert
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CloudAlert: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CloudCog
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cloud-cog
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CloudCog: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CloudDownload
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cloud-download
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CloudDownload: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CloudDrizzle
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cloud-drizzle
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CloudDrizzle: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CloudFog
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cloud-fog
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CloudFog: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CloudHail
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cloud-hail
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CloudHail: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CloudLightning
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cloud-lightning
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CloudLightning: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CloudMoonRain
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cloud-moon-rain
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CloudMoonRain: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CloudMoon
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cloud-moon
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CloudMoon: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CloudOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cloud-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CloudOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CloudRainWind
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cloud-rain-wind
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CloudRainWind: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CloudRain
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cloud-rain
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CloudRain: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CloudSnow
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cloud-snow
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CloudSnow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CloudSunRain
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cloud-sun-rain
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CloudSunRain: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CloudSun
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cloud-sun
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CloudSun: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CloudUpload
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cloud-upload
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CloudUpload: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Cloud
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cloud
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Cloud: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Cloudy
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cloudy
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Cloudy: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Clover
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/clover
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Clover: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Club
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/club
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Club: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CodeXml
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/code-xml
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CodeXml: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Code
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/code
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Code: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Codepen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/codepen
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=codepen instead. This icon will be removed in v1.0
|
||
|
|
*/
|
||
|
|
declare const Codepen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Codesandbox
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/codesandbox
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=codesandbox instead. This icon will be removed in v1.0
|
||
|
|
*/
|
||
|
|
declare const Codesandbox: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Coffee
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/coffee
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Coffee: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Cog
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cog
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Cog: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Coins
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/coins
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Coins: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Columns2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/columns-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Columns2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Columns3
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/columns-3
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Columns3: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Columns4
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/columns-4
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Columns4: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Combine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/combine
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Combine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Command
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/command
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Command: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Compass
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/compass
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Compass: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Component
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/component
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Component: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Computer
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/computer
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Computer: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ConciergeBell
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/concierge-bell
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ConciergeBell: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Cone
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cone
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Cone: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Construction
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/construction
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Construction: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ContactRound
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/contact-round
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ContactRound: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Contact
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/contact
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Contact: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Container
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/container
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Container: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Contrast
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/contrast
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Contrast: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Cookie
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cookie
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Cookie: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CookingPot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cooking-pot
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CookingPot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CopyCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/copy-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CopyCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CopyMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/copy-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CopyMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CopyPlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/copy-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CopyPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CopySlash
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/copy-slash
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CopySlash: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CopyX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/copy-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CopyX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Copy
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/copy
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Copy: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Copyleft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/copyleft
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Copyleft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Copyright
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/copyright
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Copyright: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CornerDownLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/corner-down-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CornerDownLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CornerDownRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/corner-down-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CornerDownRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CornerLeftDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/corner-left-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CornerLeftDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CornerLeftUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/corner-left-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CornerLeftUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CornerRightDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/corner-right-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CornerRightDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CornerRightUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/corner-right-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CornerRightUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CornerUpLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/corner-up-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CornerUpLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CornerUpRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/corner-up-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CornerUpRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Cpu
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cpu
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Cpu: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CreativeCommons
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/creative-commons
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CreativeCommons: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CreditCard
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/credit-card
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CreditCard: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Croissant
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/croissant
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Croissant: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Crop
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/crop
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Crop: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Cross
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cross
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Cross: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Crosshair
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/crosshair
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Crosshair: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Crown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/crown
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Crown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Cuboid
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cuboid
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Cuboid: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name CupSoda
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cup-soda
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const CupSoda: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Currency
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/currency
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Currency: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Cylinder
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/cylinder
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Cylinder: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Dam
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/dam
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Dam: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name DatabaseBackup
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/database-backup
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const DatabaseBackup: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name DatabaseZap
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/database-zap
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const DatabaseZap: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Database
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/database
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Database: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Delete
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/delete
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Delete: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Dessert
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/dessert
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Dessert: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Diameter
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/diameter
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Diameter: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name DiamondMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/diamond-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const DiamondMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name DiamondPercent
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/diamond-percent
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const DiamondPercent: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name DiamondPlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/diamond-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const DiamondPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Diamond
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/diamond
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Diamond: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Dice1
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/dice-1
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Dice1: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Dice2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/dice-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Dice2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Dice3
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/dice-3
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Dice3: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Dice4
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/dice-4
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Dice4: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Dice5
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/dice-5
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Dice5: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Dice6
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/dice-6
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Dice6: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Dices
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/dices
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Dices: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Diff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/diff
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Diff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Disc2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/disc-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Disc2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Disc3
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/disc-3
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Disc3: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name DiscAlbum
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/disc-album
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const DiscAlbum: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Disc
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/disc
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Disc: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Divide
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/divide
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Divide: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name DnaOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/dna-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const DnaOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Dna
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/dna
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Dna: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Dock
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/dock
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Dock: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Dog
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/dog
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Dog: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name DollarSign
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/dollar-sign
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const DollarSign: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Donut
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/donut
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Donut: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name DoorClosed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/door-closed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const DoorClosed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name DoorOpen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/door-open
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const DoorOpen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Dot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/dot
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Dot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Download
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/download
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Download: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name DraftingCompass
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/drafting-compass
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const DraftingCompass: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Drama
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/drama
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Drama: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Dribbble
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/dribbble
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=dribbble instead. This icon will be removed in v1.0
|
||
|
|
*/
|
||
|
|
declare const Dribbble: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Drill
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/drill
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Drill: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Droplet
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/droplet
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Droplet: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Droplets
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/droplets
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Droplets: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Drum
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/drum
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Drum: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Drumstick
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/drumstick
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Drumstick: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Dumbbell
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/dumbbell
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Dumbbell: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name EarOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ear-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const EarOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Ear
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ear
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Ear: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name EarthLock
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/earth-lock
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const EarthLock: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Earth
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/earth
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Earth: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Eclipse
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/eclipse
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Eclipse: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name EggFried
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/egg-fried
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const EggFried: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name EggOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/egg-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const EggOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Egg
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/egg
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Egg: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name EllipsisVertical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ellipsis-vertical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const EllipsisVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Ellipsis
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ellipsis
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Ellipsis: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name EqualApproximately
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/equal-approximately
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const EqualApproximately: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name EqualNot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/equal-not
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const EqualNot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Equal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/equal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Equal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Eraser
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/eraser
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Eraser: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name EthernetPort
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ethernet-port
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const EthernetPort: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Euro
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/euro
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Euro: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Expand
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/expand
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Expand: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ExternalLink
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/external-link
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ExternalLink: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name EyeClosed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/eye-closed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const EyeClosed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name EyeOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/eye-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const EyeOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Eye
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/eye
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Eye: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Facebook
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/facebook
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=facebook instead. This icon will be removed in v1.0
|
||
|
|
*/
|
||
|
|
declare const Facebook: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Factory
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/factory
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Factory: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Fan
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/fan
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Fan: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FastForward
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/fast-forward
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FastForward: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Feather
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/feather
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Feather: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Fence
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/fence
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Fence: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FerrisWheel
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ferris-wheel
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FerrisWheel: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Figma
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/figma
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=figma instead. This icon will be removed in v1.0
|
||
|
|
*/
|
||
|
|
declare const Figma: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileArchive
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-archive
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileArchive: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileAudio2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-audio-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileAudio2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileAudio
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-audio
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileAudio: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileAxis3d
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-axis-3d
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileAxis3d: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileBadge2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-badge-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileBadge2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileBadge
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-badge
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileBadge: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileBox
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-box
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileBox: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileChartColumnIncreasing
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-chart-column-increasing
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileChartColumnIncreasing: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileChartColumn
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-chart-column
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileChartColumn: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileChartLine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-chart-line
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileChartLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileChartPie
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-chart-pie
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileChartPie: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileCheck2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-check-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileCheck2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileClock
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-clock
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileClock: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileCode2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-code-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileCode2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileCode
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-code
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileCode: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileCog
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-cog
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileCog: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileDiff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-diff
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileDiff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileDigit
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-digit
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileDigit: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileHeart
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-heart
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileHeart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileImage
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-image
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileImage: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileInput
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-input
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileInput: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileJson2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-json-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileJson2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileJson
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-json
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileJson: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileKey2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-key-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileKey2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileKey
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-key
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileKey: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileLock2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-lock-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileLock2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileLock
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-lock
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileLock: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileMinus2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-minus-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileMinus2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileMusic
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-music
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileMusic: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileOutput
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-output
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileOutput: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FilePenLine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-pen-line
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FilePenLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FilePen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-pen
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FilePen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FilePlus2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-plus-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FilePlus2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FilePlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FilePlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileQuestion
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-question
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileQuestion: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileScan
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-scan
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileScan: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileSearch2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-search-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileSearch2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileSearch
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-search
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileSearch: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileSliders
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-sliders
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileSliders: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileSpreadsheet
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-spreadsheet
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileSpreadsheet: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileStack
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-stack
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileStack: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileSymlink
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-symlink
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileSymlink: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileTerminal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-terminal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileTerminal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileText
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-text
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileText: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileType2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-type-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileType2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileType
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-type
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileType: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileUser
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-user
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileUser: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileVideo2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-video-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileVideo2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileVideo
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-video
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileVideo: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileVolume2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-volume-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileVolume2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileVolume
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-volume
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileVolume: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileWarning
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-warning
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileWarning: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileX2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-x-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileX2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FileX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FileX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name File
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/file
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const File: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Files
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/files
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Files: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Film
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/film
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Film: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FilterX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/filter-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FilterX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Filter
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/filter
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Filter: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Fingerprint
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/fingerprint
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Fingerprint: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FireExtinguisher
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/fire-extinguisher
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FireExtinguisher: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FishOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/fish-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FishOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FishSymbol
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/fish-symbol
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FishSymbol: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Fish
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/fish
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Fish: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FlagOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/flag-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FlagOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FlagTriangleLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/flag-triangle-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FlagTriangleLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FlagTriangleRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/flag-triangle-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FlagTriangleRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Flag
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/flag
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Flag: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FlameKindling
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/flame-kindling
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FlameKindling: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Flame
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/flame
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Flame: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FlashlightOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/flashlight-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FlashlightOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Flashlight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/flashlight
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Flashlight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FlaskConicalOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/flask-conical-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FlaskConicalOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FlaskConical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/flask-conical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FlaskConical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FlaskRound
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/flask-round
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FlaskRound: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FlipHorizontal2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/flip-horizontal-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FlipHorizontal2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FlipHorizontal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/flip-horizontal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FlipHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FlipVertical2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/flip-vertical-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FlipVertical2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FlipVertical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/flip-vertical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FlipVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Flower2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/flower-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Flower2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Flower
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/flower
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Flower: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Focus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/focus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Focus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FoldHorizontal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/fold-horizontal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FoldHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FoldVertical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/fold-vertical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FoldVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderArchive
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-archive
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderArchive: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderClock
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-clock
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderClock: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderClosed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-closed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderClosed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderCode
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-code
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderCode: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderCog
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-cog
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderCog: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderDot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-dot
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderDot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderGit2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-git-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderGit2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderGit
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-git
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderGit: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderHeart
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-heart
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderHeart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderInput
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-input
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderInput: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderKanban
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-kanban
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderKanban: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderKey
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-key
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderKey: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderLock
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-lock
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderLock: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderOpenDot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-open-dot
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderOpenDot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderOpen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-open
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderOpen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderOutput
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-output
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderOutput: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderPen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-pen
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderPen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderPlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderRoot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-root
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderRoot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderSearch2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-search-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderSearch2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderSearch
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-search
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderSearch: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderSymlink
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-symlink
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderSymlink: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderSync
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-sync
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderSync: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderTree
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-tree
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderTree: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name FolderX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const FolderX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Folder
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folder
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Folder: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Folders
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/folders
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Folders: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Footprints
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/footprints
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Footprints: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Forklift
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/forklift
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Forklift: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Forward
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/forward
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Forward: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Frame
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/frame
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Frame: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Framer
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/framer
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=framer instead. This icon will be removed in v1.0
|
||
|
|
*/
|
||
|
|
declare const Framer: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Frown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/frown
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Frown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Fuel
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/fuel
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Fuel: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Fullscreen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/fullscreen
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Fullscreen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GalleryHorizontalEnd
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/gallery-horizontal-end
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GalleryHorizontalEnd: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GalleryHorizontal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/gallery-horizontal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GalleryHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GalleryThumbnails
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/gallery-thumbnails
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GalleryThumbnails: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GalleryVerticalEnd
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/gallery-vertical-end
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GalleryVerticalEnd: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GalleryVertical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/gallery-vertical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GalleryVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Gamepad2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/gamepad-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Gamepad2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Gamepad
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/gamepad
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Gamepad: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Gauge
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/gauge
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Gauge: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Gavel
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/gavel
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Gavel: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Gem
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/gem
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Gem: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Ghost
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ghost
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Ghost: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Gift
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/gift
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Gift: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GitBranchPlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/git-branch-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GitBranchPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GitBranch
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/git-branch
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GitBranch: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GitCommitHorizontal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/git-commit-horizontal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GitCommitHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GitCommitVertical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/git-commit-vertical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GitCommitVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GitCompareArrows
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/git-compare-arrows
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GitCompareArrows: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GitCompare
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/git-compare
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GitCompare: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GitFork
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/git-fork
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GitFork: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GitGraph
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/git-graph
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GitGraph: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GitMerge
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/git-merge
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GitMerge: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GitPullRequestArrow
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/git-pull-request-arrow
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GitPullRequestArrow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GitPullRequestClosed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/git-pull-request-closed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GitPullRequestClosed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GitPullRequestCreateArrow
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/git-pull-request-create-arrow
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GitPullRequestCreateArrow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GitPullRequestCreate
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/git-pull-request-create
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GitPullRequestCreate: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GitPullRequestDraft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/git-pull-request-draft
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GitPullRequestDraft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GitPullRequest
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/git-pull-request
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GitPullRequest: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Github
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/github
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=github instead. This icon will be removed in v1.0
|
||
|
|
*/
|
||
|
|
declare const Github: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Gitlab
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/gitlab
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=gitlab instead. This icon will be removed in v1.0
|
||
|
|
*/
|
||
|
|
declare const Gitlab: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GlassWater
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/glass-water
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GlassWater: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Glasses
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/glasses
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Glasses: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GlobeLock
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/globe-lock
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GlobeLock: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Globe
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/globe
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Globe: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Goal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/goal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Goal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Grab
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/grab
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Grab: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GraduationCap
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/graduation-cap
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GraduationCap: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Grape
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/grape
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Grape: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Grid2x2Check
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/grid-2x2-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Grid2x2Check: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Grid2x2Plus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/grid-2x2-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Grid2x2Plus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Grid2x2X
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/grid-2x2-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Grid2x2X: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Grid2x2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/grid-2x2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Grid2x2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Grid3x3
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/grid-3x3
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Grid3x3: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GripHorizontal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/grip-horizontal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GripHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name GripVertical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/grip-vertical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const GripVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Grip
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/grip
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Grip: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Group
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/group
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Group: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Guitar
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/guitar
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Guitar: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Ham
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ham
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Ham: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Hammer
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hammer
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Hammer: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name HandCoins
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hand-coins
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const HandCoins: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name HandHeart
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hand-heart
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const HandHeart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name HandHelping
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hand-helping
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const HandHelping: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name HandMetal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hand-metal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const HandMetal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name HandPlatter
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hand-platter
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const HandPlatter: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Hand
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hand
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Hand: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Handshake
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/handshake
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Handshake: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name HardDriveDownload
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hard-drive-download
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const HardDriveDownload: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name HardDriveUpload
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hard-drive-upload
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const HardDriveUpload: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name HardDrive
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hard-drive
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const HardDrive: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name HardHat
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hard-hat
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const HardHat: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Hash
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hash
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Hash: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Haze
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/haze
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Haze: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name HdmiPort
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hdmi-port
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const HdmiPort: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Heading1
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/heading-1
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Heading1: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Heading2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/heading-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Heading2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Heading3
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/heading-3
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Heading3: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Heading4
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/heading-4
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Heading4: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Heading5
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/heading-5
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Heading5: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Heading6
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/heading-6
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Heading6: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Heading
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/heading
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Heading: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name HeadphoneOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/headphone-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const HeadphoneOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Headphones
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/headphones
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Headphones: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Headset
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/headset
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Headset: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name HeartCrack
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/heart-crack
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const HeartCrack: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name HeartHandshake
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/heart-handshake
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const HeartHandshake: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name HeartOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/heart-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const HeartOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name HeartPulse
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/heart-pulse
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const HeartPulse: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Heart
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/heart
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Heart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Heater
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/heater
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Heater: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Hexagon
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hexagon
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Hexagon: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Highlighter
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/highlighter
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Highlighter: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name History
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/history
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const History: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name HopOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hop-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const HopOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Hop
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hop
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Hop: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Hospital
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hospital
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Hospital: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Hotel
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hotel
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Hotel: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Hourglass
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/hourglass
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Hourglass: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name HousePlug
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/house-plug
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const HousePlug: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name HousePlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/house-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const HousePlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name House
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/house
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const House: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name IceCreamBowl
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ice-cream-bowl
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const IceCreamBowl: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name IceCreamCone
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ice-cream-cone
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const IceCreamCone: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name IdCard
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/id-card
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const IdCard: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ImageDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/image-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ImageDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ImageMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/image-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ImageMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ImageOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/image-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ImageOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ImagePlay
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/image-play
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ImagePlay: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ImagePlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/image-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ImagePlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ImageUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/image-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ImageUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ImageUpscale
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/image-upscale
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ImageUpscale: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Image
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/image
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Image: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Images
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/images
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Images: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Import
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/import
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Import: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Inbox
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/inbox
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Inbox: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name IndentDecrease
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/indent-decrease
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const IndentDecrease: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name IndentIncrease
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/indent-increase
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const IndentIncrease: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name IndianRupee
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/indian-rupee
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const IndianRupee: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Infinity
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/infinity
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Infinity: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Info
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/info
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Info: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name InspectionPanel
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/inspection-panel
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const InspectionPanel: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Instagram
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/instagram
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=instagram instead. This icon will be removed in v1.0
|
||
|
|
*/
|
||
|
|
declare const Instagram: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Italic
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/italic
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Italic: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name IterationCcw
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/iteration-ccw
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const IterationCcw: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name IterationCw
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/iteration-cw
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const IterationCw: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name JapaneseYen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/japanese-yen
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const JapaneseYen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Joystick
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/joystick
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Joystick: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Kanban
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/kanban
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Kanban: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name KeyRound
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/key-round
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const KeyRound: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name KeySquare
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/key-square
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const KeySquare: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Key
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/key
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Key: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name KeyboardMusic
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/keyboard-music
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const KeyboardMusic: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name KeyboardOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/keyboard-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const KeyboardOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Keyboard
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/keyboard
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Keyboard: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LampCeiling
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/lamp-ceiling
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LampCeiling: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LampDesk
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/lamp-desk
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LampDesk: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LampFloor
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/lamp-floor
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LampFloor: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LampWallDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/lamp-wall-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LampWallDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LampWallUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/lamp-wall-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LampWallUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Lamp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/lamp
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Lamp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LandPlot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/land-plot
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LandPlot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Landmark
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/landmark
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Landmark: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Languages
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/languages
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Languages: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LaptopMinimalCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/laptop-minimal-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LaptopMinimalCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LaptopMinimal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/laptop-minimal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LaptopMinimal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Laptop
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/laptop
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Laptop: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LassoSelect
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/lasso-select
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LassoSelect: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Lasso
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/lasso
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Lasso: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Laugh
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/laugh
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Laugh: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Layers2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/layers-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Layers2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Layers3
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/layers-3
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Layers3: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Layers
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/layers
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Layers: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LayoutDashboard
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/layout-dashboard
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LayoutDashboard: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LayoutGrid
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/layout-grid
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LayoutGrid: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LayoutList
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/layout-list
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LayoutList: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LayoutPanelLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/layout-panel-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LayoutPanelLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LayoutPanelTop
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/layout-panel-top
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LayoutPanelTop: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LayoutTemplate
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/layout-template
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LayoutTemplate: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Leaf
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/leaf
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Leaf: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LeafyGreen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/leafy-green
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LeafyGreen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Lectern
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/lectern
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Lectern: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LetterText
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/letter-text
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LetterText: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LibraryBig
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/library-big
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LibraryBig: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Library
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/library
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Library: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LifeBuoy
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/life-buoy
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LifeBuoy: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Ligature
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ligature
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Ligature: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LightbulbOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/lightbulb-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LightbulbOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Lightbulb
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/lightbulb
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Lightbulb: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Link2Off
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/link-2-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Link2Off: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Link2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/link-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Link2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Link
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/link
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Link: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Linkedin
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/linkedin
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=linkedin instead. This icon will be removed in v1.0
|
||
|
|
*/
|
||
|
|
declare const Linkedin: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ListCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/list-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ListCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ListChecks
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/list-checks
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ListChecks: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ListCollapse
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/list-collapse
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ListCollapse: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ListEnd
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/list-end
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ListEnd: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ListFilter
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/list-filter
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ListFilter: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ListMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/list-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ListMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ListMusic
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/list-music
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ListMusic: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ListOrdered
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/list-ordered
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ListOrdered: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ListPlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/list-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ListPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ListRestart
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/list-restart
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ListRestart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ListStart
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/list-start
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ListStart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ListTodo
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/list-todo
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ListTodo: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ListTree
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/list-tree
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ListTree: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ListVideo
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/list-video
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ListVideo: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ListX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/list-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ListX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name List
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/list
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const List: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LoaderCircle
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/loader-circle
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LoaderCircle: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LoaderPinwheel
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/loader-pinwheel
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LoaderPinwheel: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Loader
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/loader
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Loader: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LocateFixed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/locate-fixed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LocateFixed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LocateOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/locate-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LocateOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Locate
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/locate
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Locate: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LockKeyholeOpen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/lock-keyhole-open
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LockKeyholeOpen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LockKeyhole
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/lock-keyhole
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LockKeyhole: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LockOpen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/lock-open
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LockOpen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Lock
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/lock
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Lock: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LogIn
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/log-in
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LogIn: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name LogOut
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/log-out
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const LogOut: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Logs
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/logs
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Logs: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Lollipop
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/lollipop
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Lollipop: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Luggage
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/luggage
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Luggage: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Magnet
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/magnet
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Magnet: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MailCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mail-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MailCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MailMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mail-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MailMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MailOpen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mail-open
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MailOpen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MailPlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mail-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MailPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MailQuestion
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mail-question
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MailQuestion: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MailSearch
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mail-search
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MailSearch: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MailWarning
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mail-warning
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MailWarning: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MailX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mail-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MailX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Mail
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mail
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Mail: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Mailbox
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mailbox
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Mailbox: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Mails
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mails
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Mails: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MapPinCheckInside
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/map-pin-check-inside
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MapPinCheckInside: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MapPinCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/map-pin-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MapPinCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MapPinHouse
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/map-pin-house
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MapPinHouse: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MapPinMinusInside
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/map-pin-minus-inside
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MapPinMinusInside: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MapPinMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/map-pin-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MapPinMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MapPinOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/map-pin-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MapPinOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MapPinPlusInside
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/map-pin-plus-inside
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MapPinPlusInside: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MapPinPlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/map-pin-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MapPinPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MapPinXInside
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/map-pin-x-inside
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MapPinXInside: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MapPinX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/map-pin-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MapPinX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MapPin
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/map-pin
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MapPin: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MapPinned
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/map-pinned
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MapPinned: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Map
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/map
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Map: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Martini
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/martini
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Martini: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Maximize2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/maximize-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Maximize2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Maximize
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/maximize
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Maximize: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Medal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/medal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Medal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MegaphoneOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/megaphone-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MegaphoneOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Megaphone
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/megaphone
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Megaphone: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Meh
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/meh
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Meh: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MemoryStick
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/memory-stick
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MemoryStick: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Menu
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/menu
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Menu: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Merge
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/merge
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Merge: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageCircleCode
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-circle-code
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageCircleCode: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageCircleDashed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-circle-dashed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageCircleDashed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageCircleHeart
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-circle-heart
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageCircleHeart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageCircleMore
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-circle-more
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageCircleMore: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageCircleOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-circle-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageCircleOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageCirclePlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-circle-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageCirclePlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageCircleQuestion
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-circle-question
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageCircleQuestion: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageCircleReply
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-circle-reply
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageCircleReply: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageCircleWarning
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-circle-warning
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageCircleWarning: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageCircleX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-circle-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageCircleX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageCircle
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-circle
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageCircle: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageSquareCode
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-square-code
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageSquareCode: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageSquareDashed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-square-dashed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageSquareDashed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageSquareDiff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-square-diff
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageSquareDiff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageSquareDot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-square-dot
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageSquareDot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageSquareHeart
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-square-heart
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageSquareHeart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageSquareLock
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-square-lock
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageSquareLock: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageSquareMore
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-square-more
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageSquareMore: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageSquareOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-square-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageSquareOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageSquarePlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-square-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageSquarePlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageSquareQuote
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-square-quote
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageSquareQuote: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageSquareReply
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-square-reply
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageSquareReply: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageSquareShare
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-square-share
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageSquareShare: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageSquareText
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-square-text
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageSquareText: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageSquareWarning
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-square-warning
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageSquareWarning: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageSquareX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-square-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageSquareX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessageSquare
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/message-square
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessageSquare: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MessagesSquare
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/messages-square
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MessagesSquare: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MicOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mic-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MicOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MicVocal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mic-vocal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MicVocal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Mic
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mic
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Mic: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Microchip
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/microchip
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Microchip: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Microscope
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/microscope
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Microscope: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Microwave
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/microwave
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Microwave: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Milestone
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/milestone
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Milestone: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MilkOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/milk-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MilkOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Milk
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/milk
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Milk: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Minimize2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/minimize-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Minimize2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Minimize
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/minimize
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Minimize: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Minus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Minus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MonitorCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/monitor-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MonitorCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MonitorCog
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/monitor-cog
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MonitorCog: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MonitorDot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/monitor-dot
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MonitorDot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MonitorDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/monitor-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MonitorDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MonitorOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/monitor-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MonitorOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MonitorPause
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/monitor-pause
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MonitorPause: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MonitorPlay
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/monitor-play
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MonitorPlay: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MonitorSmartphone
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/monitor-smartphone
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MonitorSmartphone: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MonitorSpeaker
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/monitor-speaker
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MonitorSpeaker: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MonitorStop
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/monitor-stop
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MonitorStop: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MonitorUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/monitor-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MonitorUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MonitorX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/monitor-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MonitorX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Monitor
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/monitor
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Monitor: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MoonStar
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/moon-star
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MoonStar: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Moon
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/moon
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Moon: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MountainSnow
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mountain-snow
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MountainSnow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Mountain
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mountain
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Mountain: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MouseOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mouse-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MouseOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MousePointer2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mouse-pointer-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MousePointer2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MousePointerBan
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mouse-pointer-ban
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MousePointerBan: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MousePointerClick
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mouse-pointer-click
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MousePointerClick: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MousePointer
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mouse-pointer
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MousePointer: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Mouse
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/mouse
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Mouse: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Move3d
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/move-3d
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Move3d: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MoveDiagonal2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/move-diagonal-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MoveDiagonal2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MoveDiagonal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/move-diagonal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MoveDiagonal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MoveDownLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/move-down-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MoveDownLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MoveDownRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/move-down-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MoveDownRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MoveDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/move-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MoveDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MoveHorizontal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/move-horizontal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MoveHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MoveLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/move-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MoveLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MoveRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/move-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MoveRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MoveUpLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/move-up-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MoveUpLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MoveUpRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/move-up-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MoveUpRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MoveUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/move-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MoveUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name MoveVertical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/move-vertical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const MoveVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Move
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/move
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Move: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Music2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/music-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Music2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Music3
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/music-3
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Music3: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Music4
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/music-4
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Music4: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Music
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/music
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Music: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Navigation2Off
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/navigation-2-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Navigation2Off: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Navigation2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/navigation-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Navigation2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name NavigationOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/navigation-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const NavigationOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Navigation
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/navigation
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Navigation: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Network
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/network
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Network: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Newspaper
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/newspaper
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Newspaper: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Nfc
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/nfc
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Nfc: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name NotebookPen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/notebook-pen
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const NotebookPen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name NotebookTabs
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/notebook-tabs
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const NotebookTabs: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name NotebookText
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/notebook-text
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const NotebookText: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Notebook
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/notebook
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Notebook: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name NotepadTextDashed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/notepad-text-dashed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const NotepadTextDashed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name NotepadText
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/notepad-text
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const NotepadText: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name NutOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/nut-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const NutOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Nut
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/nut
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Nut: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name OctagonAlert
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/octagon-alert
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const OctagonAlert: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name OctagonMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/octagon-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const OctagonMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name OctagonPause
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/octagon-pause
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const OctagonPause: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name OctagonX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/octagon-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const OctagonX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Octagon
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/octagon
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Octagon: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Omega
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/omega
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Omega: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Option
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/option
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Option: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Orbit
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/orbit
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Orbit: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Origami
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/origami
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Origami: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Package2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/package-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Package2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PackageCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/package-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PackageCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PackageMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/package-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PackageMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PackageOpen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/package-open
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PackageOpen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PackagePlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/package-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PackagePlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PackageSearch
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/package-search
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PackageSearch: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PackageX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/package-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PackageX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Package
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/package
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Package: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PaintBucket
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/paint-bucket
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PaintBucket: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PaintRoller
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/paint-roller
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PaintRoller: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PaintbrushVertical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/paintbrush-vertical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PaintbrushVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Paintbrush
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/paintbrush
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Paintbrush: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Palette
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/palette
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Palette: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelBottomClose
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panel-bottom-close
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelBottomClose: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelBottomDashed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panel-bottom-dashed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelBottomDashed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelBottomOpen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panel-bottom-open
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelBottomOpen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelBottom
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panel-bottom
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelBottom: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelLeftClose
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panel-left-close
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelLeftClose: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelLeftDashed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panel-left-dashed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelLeftDashed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelLeftOpen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panel-left-open
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelLeftOpen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panel-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelRightClose
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panel-right-close
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelRightClose: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelRightDashed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panel-right-dashed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelRightDashed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelRightOpen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panel-right-open
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelRightOpen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panel-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelTopClose
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panel-top-close
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelTopClose: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelTopDashed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panel-top-dashed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelTopDashed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelTopOpen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panel-top-open
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelTopOpen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelTop
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panel-top
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelTop: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelsLeftBottom
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panels-left-bottom
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelsLeftBottom: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelsRightBottom
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panels-right-bottom
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelsRightBottom: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PanelsTopLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/panels-top-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PanelsTopLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Paperclip
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/paperclip
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Paperclip: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Parentheses
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/parentheses
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Parentheses: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ParkingMeter
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/parking-meter
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ParkingMeter: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PartyPopper
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/party-popper
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PartyPopper: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Pause
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pause
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Pause: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PawPrint
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/paw-print
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PawPrint: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PcCase
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pc-case
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PcCase: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PenLine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pen-line
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PenLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PenOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pen-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PenOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PenTool
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pen-tool
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PenTool: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Pen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pen
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Pen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PencilLine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pencil-line
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PencilLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PencilOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pencil-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PencilOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PencilRuler
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pencil-ruler
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PencilRuler: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Pencil
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pencil
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Pencil: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Pentagon
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pentagon
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Pentagon: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Percent
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/percent
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Percent: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PersonStanding
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/person-standing
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PersonStanding: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PhilippinePeso
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/philippine-peso
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PhilippinePeso: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PhoneCall
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/phone-call
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PhoneCall: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PhoneForwarded
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/phone-forwarded
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PhoneForwarded: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PhoneIncoming
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/phone-incoming
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PhoneIncoming: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PhoneMissed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/phone-missed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PhoneMissed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PhoneOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/phone-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PhoneOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PhoneOutgoing
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/phone-outgoing
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PhoneOutgoing: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Phone
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/phone
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Phone: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Pi
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pi
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Pi: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Piano
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/piano
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Piano: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Pickaxe
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pickaxe
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Pickaxe: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PictureInPicture2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/picture-in-picture-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PictureInPicture2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PictureInPicture
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/picture-in-picture
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PictureInPicture: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PiggyBank
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/piggy-bank
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PiggyBank: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PilcrowLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pilcrow-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PilcrowLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PilcrowRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pilcrow-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PilcrowRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Pilcrow
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pilcrow
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Pilcrow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PillBottle
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pill-bottle
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PillBottle: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Pill
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pill
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Pill: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PinOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pin-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PinOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Pin
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pin
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Pin: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Pipette
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pipette
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Pipette: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Pizza
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pizza
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Pizza: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PlaneLanding
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/plane-landing
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PlaneLanding: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PlaneTakeoff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/plane-takeoff
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PlaneTakeoff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Plane
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/plane
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Plane: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Play
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/play
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Play: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Plug2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/plug-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Plug2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PlugZap
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/plug-zap
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PlugZap: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Plug
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/plug
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Plug: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Plus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Plus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PocketKnife
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pocket-knife
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PocketKnife: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Pocket
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pocket
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=pocket instead. This icon will be removed in v1.0
|
||
|
|
*/
|
||
|
|
declare const Pocket: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Podcast
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/podcast
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Podcast: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PointerOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pointer-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PointerOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Pointer
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pointer
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Pointer: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Popcorn
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/popcorn
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Popcorn: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Popsicle
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/popsicle
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Popsicle: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PoundSterling
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pound-sterling
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PoundSterling: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PowerOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/power-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PowerOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Power
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/power
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Power: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Presentation
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/presentation
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Presentation: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name PrinterCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/printer-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const PrinterCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Printer
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/printer
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Printer: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Projector
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/projector
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Projector: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Proportions
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/proportions
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Proportions: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Puzzle
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/puzzle
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Puzzle: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Pyramid
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/pyramid
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Pyramid: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name QrCode
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/qr-code
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const QrCode: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Quote
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/quote
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Quote: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Rabbit
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rabbit
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Rabbit: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Radar
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/radar
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Radar: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Radiation
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/radiation
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Radiation: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Radical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/radical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Radical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RadioReceiver
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/radio-receiver
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RadioReceiver: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RadioTower
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/radio-tower
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RadioTower: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Radio
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/radio
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Radio: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Radius
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/radius
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Radius: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RailSymbol
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rail-symbol
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RailSymbol: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Rainbow
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rainbow
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Rainbow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Rat
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rat
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Rat: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Ratio
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ratio
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Ratio: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ReceiptCent
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/receipt-cent
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ReceiptCent: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ReceiptEuro
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/receipt-euro
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ReceiptEuro: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ReceiptIndianRupee
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/receipt-indian-rupee
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ReceiptIndianRupee: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ReceiptJapaneseYen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/receipt-japanese-yen
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ReceiptJapaneseYen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ReceiptPoundSterling
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/receipt-pound-sterling
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ReceiptPoundSterling: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ReceiptRussianRuble
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/receipt-russian-ruble
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ReceiptRussianRuble: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ReceiptSwissFranc
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/receipt-swiss-franc
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ReceiptSwissFranc: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ReceiptText
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/receipt-text
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ReceiptText: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Receipt
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/receipt
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Receipt: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RectangleEllipsis
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rectangle-ellipsis
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RectangleEllipsis: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RectangleHorizontal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rectangle-horizontal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RectangleHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RectangleVertical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rectangle-vertical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RectangleVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Recycle
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/recycle
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Recycle: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Redo2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/redo-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Redo2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RedoDot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/redo-dot
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RedoDot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Redo
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/redo
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Redo: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RefreshCcwDot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/refresh-ccw-dot
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RefreshCcwDot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RefreshCcw
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/refresh-ccw
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RefreshCcw: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RefreshCwOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/refresh-cw-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RefreshCwOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RefreshCw
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/refresh-cw
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RefreshCw: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Refrigerator
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/refrigerator
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Refrigerator: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Regex
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/regex
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Regex: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RemoveFormatting
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/remove-formatting
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RemoveFormatting: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Repeat1
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/repeat-1
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Repeat1: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Repeat2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/repeat-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Repeat2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Repeat
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/repeat
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Repeat: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ReplaceAll
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/replace-all
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ReplaceAll: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Replace
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/replace
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Replace: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ReplyAll
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/reply-all
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ReplyAll: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Reply
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/reply
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Reply: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Rewind
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rewind
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Rewind: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Ribbon
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ribbon
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Ribbon: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Rocket
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rocket
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Rocket: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RockingChair
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rocking-chair
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RockingChair: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RollerCoaster
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/roller-coaster
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RollerCoaster: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Rotate3d
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rotate-3d
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Rotate3d: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RotateCcwSquare
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rotate-ccw-square
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RotateCcwSquare: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RotateCcw
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rotate-ccw
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RotateCcw: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RotateCwSquare
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rotate-cw-square
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RotateCwSquare: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RotateCw
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rotate-cw
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RotateCw: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RouteOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/route-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RouteOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Route
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/route
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Route: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Router
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/router
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Router: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Rows2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rows-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Rows2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Rows3
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rows-3
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Rows3: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Rows4
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rows-4
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Rows4: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Rss
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/rss
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Rss: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Ruler
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ruler
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Ruler: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name RussianRuble
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/russian-ruble
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const RussianRuble: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Sailboat
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sailboat
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Sailboat: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Salad
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/salad
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Salad: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Sandwich
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sandwich
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Sandwich: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SatelliteDish
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/satellite-dish
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SatelliteDish: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Satellite
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/satellite
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Satellite: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SaveAll
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/save-all
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SaveAll: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SaveOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/save-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SaveOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Save
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/save
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Save: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Scale3d
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/scale-3d
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Scale3d: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Scale
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/scale
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Scale: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Scaling
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/scaling
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Scaling: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ScanBarcode
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/scan-barcode
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ScanBarcode: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ScanEye
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/scan-eye
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ScanEye: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ScanFace
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/scan-face
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ScanFace: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ScanLine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/scan-line
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ScanLine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ScanQrCode
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/scan-qr-code
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ScanQrCode: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ScanSearch
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/scan-search
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ScanSearch: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ScanText
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/scan-text
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ScanText: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Scan
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/scan
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Scan: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name School
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/school
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const School: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ScissorsLineDashed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/scissors-line-dashed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ScissorsLineDashed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Scissors
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/scissors
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Scissors: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ScreenShareOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/screen-share-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ScreenShareOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ScreenShare
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/screen-share
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ScreenShare: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ScrollText
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/scroll-text
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ScrollText: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Scroll
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/scroll
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Scroll: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SearchCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/search-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SearchCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SearchCode
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/search-code
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SearchCode: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SearchSlash
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/search-slash
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SearchSlash: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SearchX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/search-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SearchX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Search
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/search
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Search: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Section
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/section
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Section: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SendHorizontal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/send-horizontal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SendHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SendToBack
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/send-to-back
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SendToBack: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Send
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/send
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Send: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SeparatorHorizontal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/separator-horizontal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SeparatorHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SeparatorVertical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/separator-vertical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SeparatorVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ServerCog
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/server-cog
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ServerCog: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ServerCrash
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/server-crash
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ServerCrash: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ServerOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/server-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ServerOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Server
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/server
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Server: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Settings2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/settings-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Settings2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Settings
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/settings
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Settings: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Shapes
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shapes
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Shapes: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Share2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/share-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Share2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Share
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/share
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Share: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Sheet
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sheet
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Sheet: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Shell
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shell
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Shell: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ShieldAlert
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shield-alert
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ShieldAlert: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ShieldBan
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shield-ban
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ShieldBan: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ShieldCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shield-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ShieldCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ShieldEllipsis
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shield-ellipsis
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ShieldEllipsis: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ShieldHalf
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shield-half
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ShieldHalf: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ShieldMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shield-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ShieldMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ShieldOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shield-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ShieldOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ShieldPlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shield-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ShieldPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ShieldQuestion
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shield-question
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ShieldQuestion: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ShieldX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shield-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ShieldX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Shield
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shield
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Shield: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ShipWheel
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ship-wheel
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ShipWheel: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Ship
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ship
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Ship: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Shirt
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shirt
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Shirt: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ShoppingBag
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shopping-bag
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ShoppingBag: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ShoppingBasket
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shopping-basket
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ShoppingBasket: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ShoppingCart
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shopping-cart
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ShoppingCart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Shovel
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shovel
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Shovel: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ShowerHead
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shower-head
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ShowerHead: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Shrink
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shrink
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Shrink: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Shrub
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shrub
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Shrub: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Shuffle
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/shuffle
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Shuffle: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Sigma
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sigma
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Sigma: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SignalHigh
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/signal-high
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SignalHigh: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SignalLow
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/signal-low
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SignalLow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SignalMedium
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/signal-medium
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SignalMedium: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SignalZero
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/signal-zero
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SignalZero: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Signal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/signal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Signal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Signature
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/signature
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Signature: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SignpostBig
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/signpost-big
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SignpostBig: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Signpost
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/signpost
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Signpost: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Siren
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/siren
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Siren: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SkipBack
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/skip-back
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SkipBack: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SkipForward
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/skip-forward
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SkipForward: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Skull
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/skull
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Skull: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Slack
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/slack
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=slack instead. This icon will be removed in v1.0
|
||
|
|
*/
|
||
|
|
declare const Slack: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Slash
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/slash
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Slash: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Slice
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/slice
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Slice: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SlidersHorizontal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sliders-horizontal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SlidersHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SlidersVertical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sliders-vertical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SlidersVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SmartphoneCharging
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/smartphone-charging
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SmartphoneCharging: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SmartphoneNfc
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/smartphone-nfc
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SmartphoneNfc: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Smartphone
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/smartphone
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Smartphone: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SmilePlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/smile-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SmilePlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Smile
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/smile
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Smile: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Snail
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/snail
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Snail: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Snowflake
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/snowflake
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Snowflake: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Sofa
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sofa
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Sofa: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Soup
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/soup
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Soup: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Space
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/space
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Space: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Spade
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/spade
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Spade: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Sparkle
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sparkle
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Sparkle: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Sparkles
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sparkles
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Sparkles: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Speaker
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/speaker
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Speaker: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Speech
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/speech
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Speech: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SpellCheck2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/spell-check-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SpellCheck2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SpellCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/spell-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SpellCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Spline
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/spline
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Spline: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Split
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/split
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Split: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SprayCan
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/spray-can
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SprayCan: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Sprout
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sprout
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Sprout: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareActivity
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-activity
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareActivity: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareArrowDownLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-arrow-down-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareArrowDownLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareArrowDownRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-arrow-down-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareArrowDownRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareArrowDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-arrow-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareArrowDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareArrowLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-arrow-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareArrowLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareArrowOutDownLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-arrow-out-down-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareArrowOutDownLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareArrowOutDownRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-arrow-out-down-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareArrowOutDownRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareArrowOutUpLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-arrow-out-up-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareArrowOutUpLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareArrowOutUpRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-arrow-out-up-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareArrowOutUpRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareArrowRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-arrow-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareArrowRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareArrowUpLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-arrow-up-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareArrowUpLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareArrowUpRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-arrow-up-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareArrowUpRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareArrowUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-arrow-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareArrowUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareAsterisk
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-asterisk
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareAsterisk: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareBottomDashedScissors
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-bottom-dashed-scissors
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareBottomDashedScissors: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareChartGantt
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-chart-gantt
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareChartGantt: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareCheckBig
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-check-big
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareCheckBig: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareChevronDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-chevron-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareChevronDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareChevronLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-chevron-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareChevronLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareChevronRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-chevron-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareChevronRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareChevronUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-chevron-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareChevronUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareCode
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-code
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareCode: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareDashedBottomCode
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-dashed-bottom-code
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareDashedBottomCode: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareDashedBottom
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-dashed-bottom
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareDashedBottom: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareDashedKanban
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-dashed-kanban
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareDashedKanban: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareDashedMousePointer
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-dashed-mouse-pointer
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareDashedMousePointer: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareDashed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-dashed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareDashed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareDivide
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-divide
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareDivide: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareDot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-dot
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareDot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareEqual
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-equal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareEqual: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareFunction
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-function
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareFunction: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareKanban
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-kanban
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareKanban: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareLibrary
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-library
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareLibrary: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareM
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-m
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareM: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareMenu
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-menu
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareMenu: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareMousePointer
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-mouse-pointer
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareMousePointer: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareParkingOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-parking-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareParkingOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareParking
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-parking
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareParking: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquarePen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-pen
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquarePen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquarePercent
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-percent
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquarePercent: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquarePi
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-pi
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquarePi: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquarePilcrow
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-pilcrow
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquarePilcrow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquarePlay
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-play
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquarePlay: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquarePlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquarePlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquarePower
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-power
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquarePower: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareRadical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-radical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareRadical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareScissors
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-scissors
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareScissors: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareSigma
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-sigma
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareSigma: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareSlash
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-slash
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareSlash: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareSplitHorizontal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-split-horizontal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareSplitHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareSplitVertical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-split-vertical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareSplitVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareSquare
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-square
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareSquare: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareStack
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-stack
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareStack: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareTerminal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-terminal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareTerminal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareUserRound
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-user-round
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareUserRound: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareUser
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-user
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareUser: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SquareX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SquareX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Square
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/square
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Square: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Squircle
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/squircle
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Squircle: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Squirrel
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/squirrel
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Squirrel: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Stamp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/stamp
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Stamp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name StarHalf
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/star-half
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const StarHalf: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name StarOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/star-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const StarOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Star
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/star
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Star: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name StepBack
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/step-back
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const StepBack: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name StepForward
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/step-forward
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const StepForward: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Stethoscope
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/stethoscope
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Stethoscope: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Sticker
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sticker
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Sticker: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name StickyNote
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sticky-note
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const StickyNote: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Store
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/store
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Store: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name StretchHorizontal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/stretch-horizontal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const StretchHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name StretchVertical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/stretch-vertical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const StretchVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Strikethrough
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/strikethrough
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Strikethrough: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Subscript
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/subscript
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Subscript: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SunDim
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sun-dim
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SunDim: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SunMedium
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sun-medium
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SunMedium: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SunMoon
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sun-moon
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SunMoon: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SunSnow
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sun-snow
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SunSnow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Sun
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sun
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Sun: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Sunrise
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sunrise
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Sunrise: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Sunset
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sunset
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Sunset: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Superscript
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/superscript
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Superscript: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SwatchBook
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/swatch-book
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SwatchBook: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SwissFranc
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/swiss-franc
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SwissFranc: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name SwitchCamera
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/switch-camera
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const SwitchCamera: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Sword
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/sword
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Sword: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Swords
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/swords
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Swords: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Syringe
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/syringe
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Syringe: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Table2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/table-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Table2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TableCellsMerge
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/table-cells-merge
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TableCellsMerge: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TableCellsSplit
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/table-cells-split
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TableCellsSplit: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TableColumnsSplit
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/table-columns-split
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TableColumnsSplit: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TableOfContents
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/table-of-contents
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TableOfContents: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TableProperties
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/table-properties
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TableProperties: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TableRowsSplit
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/table-rows-split
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TableRowsSplit: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Table
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/table
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Table: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TabletSmartphone
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tablet-smartphone
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TabletSmartphone: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Tablet
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tablet
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Tablet: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Tablets
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tablets
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Tablets: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Tag
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tag
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Tag: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Tags
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tags
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Tags: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Tally1
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tally-1
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Tally1: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Tally2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tally-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Tally2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Tally3
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tally-3
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Tally3: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Tally4
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tally-4
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Tally4: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Tally5
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tally-5
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Tally5: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Tangent
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tangent
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Tangent: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Target
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/target
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Target: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Telescope
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/telescope
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Telescope: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TentTree
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tent-tree
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TentTree: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Tent
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tent
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Tent: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Terminal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/terminal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Terminal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TestTubeDiagonal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/test-tube-diagonal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TestTubeDiagonal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TestTube
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/test-tube
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TestTube: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TestTubes
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/test-tubes
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TestTubes: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TextCursorInput
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/text-cursor-input
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TextCursorInput: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TextCursor
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/text-cursor
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TextCursor: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TextQuote
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/text-quote
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TextQuote: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TextSearch
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/text-search
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TextSearch: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TextSelect
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/text-select
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TextSelect: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Text
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/text
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Text: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Theater
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/theater
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Theater: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ThermometerSnowflake
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/thermometer-snowflake
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ThermometerSnowflake: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ThermometerSun
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/thermometer-sun
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ThermometerSun: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Thermometer
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/thermometer
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Thermometer: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ThumbsDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/thumbs-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ThumbsDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ThumbsUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/thumbs-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ThumbsUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TicketCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ticket-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TicketCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TicketMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ticket-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TicketMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TicketPercent
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ticket-percent
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TicketPercent: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TicketPlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ticket-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TicketPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TicketSlash
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ticket-slash
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TicketSlash: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TicketX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ticket-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TicketX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Ticket
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ticket
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Ticket: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TicketsPlane
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tickets-plane
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TicketsPlane: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Tickets
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tickets
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Tickets: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TimerOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/timer-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TimerOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TimerReset
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/timer-reset
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TimerReset: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Timer
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/timer
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Timer: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ToggleLeft
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/toggle-left
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ToggleLeft: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ToggleRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/toggle-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ToggleRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Toilet
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/toilet
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Toilet: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Tornado
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tornado
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Tornado: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Torus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/torus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Torus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TouchpadOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/touchpad-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TouchpadOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Touchpad
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/touchpad
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Touchpad: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TowerControl
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tower-control
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TowerControl: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ToyBrick
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/toy-brick
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ToyBrick: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Tractor
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tractor
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Tractor: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TrafficCone
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/traffic-cone
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TrafficCone: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TrainFrontTunnel
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/train-front-tunnel
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TrainFrontTunnel: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TrainFront
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/train-front
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TrainFront: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TrainTrack
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/train-track
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TrainTrack: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TramFront
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tram-front
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TramFront: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Trash2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/trash-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Trash2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Trash
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/trash
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Trash: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TreeDeciduous
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tree-deciduous
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TreeDeciduous: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TreePalm
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tree-palm
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TreePalm: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TreePine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tree-pine
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TreePine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Trees
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/trees
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Trees: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Trello
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/trello
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=trello instead. This icon will be removed in v1.0
|
||
|
|
*/
|
||
|
|
declare const Trello: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TrendingDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/trending-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TrendingDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TrendingUpDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/trending-up-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TrendingUpDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TrendingUp
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/trending-up
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TrendingUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TriangleAlert
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/triangle-alert
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TriangleAlert: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TriangleRight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/triangle-right
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TriangleRight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Triangle
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/triangle
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Triangle: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Trophy
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/trophy
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Trophy: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Truck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/truck
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Truck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Turtle
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/turtle
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Turtle: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TvMinimalPlay
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tv-minimal-play
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TvMinimalPlay: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TvMinimal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tv-minimal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TvMinimal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Tv
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/tv
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Tv: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Twitch
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/twitch
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=twitch instead. This icon will be removed in v1.0
|
||
|
|
*/
|
||
|
|
declare const Twitch: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Twitter
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/twitter
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=twitter instead. This icon will be removed in v1.0
|
||
|
|
*/
|
||
|
|
declare const Twitter: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name TypeOutline
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/type-outline
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const TypeOutline: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Type
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/type
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Type: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UmbrellaOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/umbrella-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UmbrellaOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Umbrella
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/umbrella
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Umbrella: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Underline
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/underline
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Underline: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Undo2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/undo-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Undo2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UndoDot
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/undo-dot
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UndoDot: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Undo
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/undo
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Undo: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UnfoldHorizontal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/unfold-horizontal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UnfoldHorizontal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UnfoldVertical
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/unfold-vertical
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UnfoldVertical: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Ungroup
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/ungroup
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Ungroup: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name University
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/university
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const University: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Unlink2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/unlink-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Unlink2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Unlink
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/unlink
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Unlink: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Unplug
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/unplug
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Unplug: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Upload
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/upload
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Upload: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Usb
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/usb
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Usb: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UserCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/user-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UserCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UserCog
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/user-cog
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UserCog: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UserMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/user-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UserMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UserPen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/user-pen
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UserPen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UserPlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/user-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UserPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UserRoundCheck
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/user-round-check
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UserRoundCheck: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UserRoundCog
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/user-round-cog
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UserRoundCog: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UserRoundMinus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/user-round-minus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UserRoundMinus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UserRoundPen
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/user-round-pen
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UserRoundPen: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UserRoundPlus
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/user-round-plus
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UserRoundPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UserRoundSearch
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/user-round-search
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UserRoundSearch: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UserRoundX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/user-round-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UserRoundX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UserRound
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/user-round
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UserRound: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UserSearch
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/user-search
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UserSearch: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UserX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/user-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UserX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name User
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/user
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const User: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UsersRound
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/users-round
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UsersRound: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Users
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/users
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Users: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UtensilsCrossed
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/utensils-crossed
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UtensilsCrossed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Utensils
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/utensils
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Utensils: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name UtilityPole
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/utility-pole
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const UtilityPole: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Variable
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/variable
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Variable: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Vault
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/vault
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Vault: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Vegan
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/vegan
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Vegan: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name VenetianMask
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/venetian-mask
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const VenetianMask: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name VibrateOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/vibrate-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const VibrateOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Vibrate
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/vibrate
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Vibrate: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name VideoOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/video-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const VideoOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Video
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/video
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Video: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Videotape
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/videotape
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Videotape: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name View
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/view
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const View: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Voicemail
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/voicemail
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Voicemail: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Volleyball
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/volleyball
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Volleyball: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Volume1
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/volume-1
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Volume1: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Volume2
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/volume-2
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Volume2: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name VolumeOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/volume-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const VolumeOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name VolumeX
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/volume-x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const VolumeX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Volume
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/volume
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Volume: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Vote
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/vote
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Vote: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name WalletCards
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wallet-cards
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const WalletCards: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name WalletMinimal
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wallet-minimal
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const WalletMinimal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Wallet
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wallet
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Wallet: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Wallpaper
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wallpaper
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Wallpaper: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name WandSparkles
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wand-sparkles
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const WandSparkles: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Wand
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wand
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Wand: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Warehouse
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/warehouse
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Warehouse: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name WashingMachine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/washing-machine
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const WashingMachine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Watch
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/watch
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Watch: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Waves
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/waves
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Waves: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Waypoints
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/waypoints
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Waypoints: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Webcam
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/webcam
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Webcam: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name WebhookOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/webhook-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const WebhookOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Webhook
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/webhook
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Webhook: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Weight
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/weight
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Weight: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name WheatOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wheat-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const WheatOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Wheat
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wheat
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Wheat: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name WholeWord
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/whole-word
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const WholeWord: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name WifiHigh
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wifi-high
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const WifiHigh: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name WifiLow
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wifi-low
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const WifiLow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name WifiOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wifi-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const WifiOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name WifiZero
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wifi-zero
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const WifiZero: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Wifi
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wifi
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Wifi: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name WindArrowDown
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wind-arrow-down
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const WindArrowDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Wind
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wind
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Wind: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name WineOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wine-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const WineOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Wine
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wine
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Wine: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Workflow
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/workflow
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Workflow: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Worm
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/worm
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Worm: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name WrapText
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wrap-text
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const WrapText: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Wrench
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/wrench
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Wrench: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name X
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/x
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const X: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Youtube
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/youtube
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=youtube instead. This icon will be removed in v1.0
|
||
|
|
*/
|
||
|
|
declare const Youtube: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ZapOff
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/zap-off
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ZapOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name Zap
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/zap
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const Zap: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ZoomIn
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/zoom-in
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ZoomIn: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @component @name ZoomOut
|
||
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
||
|
|
*
|
||
|
|
* @preview  - https://lucide.dev/icons/zoom-out
|
||
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
||
|
|
*
|
||
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
||
|
|
* @returns {JSX.Element} JSX Element
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const ZoomOut: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
declare const index_AArrowDown: typeof AArrowDown;
|
||
|
|
declare const index_AArrowUp: typeof AArrowUp;
|
||
|
|
declare const index_ALargeSmall: typeof ALargeSmall;
|
||
|
|
declare const index_Accessibility: typeof Accessibility;
|
||
|
|
declare const index_Activity: typeof Activity;
|
||
|
|
declare const index_AirVent: typeof AirVent;
|
||
|
|
declare const index_Airplay: typeof Airplay;
|
||
|
|
declare const index_AlarmClock: typeof AlarmClock;
|
||
|
|
declare const index_AlarmClockCheck: typeof AlarmClockCheck;
|
||
|
|
declare const index_AlarmClockMinus: typeof AlarmClockMinus;
|
||
|
|
declare const index_AlarmClockOff: typeof AlarmClockOff;
|
||
|
|
declare const index_AlarmClockPlus: typeof AlarmClockPlus;
|
||
|
|
declare const index_AlarmSmoke: typeof AlarmSmoke;
|
||
|
|
declare const index_Album: typeof Album;
|
||
|
|
declare const index_AlignCenter: typeof AlignCenter;
|
||
|
|
declare const index_AlignCenterHorizontal: typeof AlignCenterHorizontal;
|
||
|
|
declare const index_AlignCenterVertical: typeof AlignCenterVertical;
|
||
|
|
declare const index_AlignEndHorizontal: typeof AlignEndHorizontal;
|
||
|
|
declare const index_AlignEndVertical: typeof AlignEndVertical;
|
||
|
|
declare const index_AlignHorizontalDistributeCenter: typeof AlignHorizontalDistributeCenter;
|
||
|
|
declare const index_AlignHorizontalDistributeEnd: typeof AlignHorizontalDistributeEnd;
|
||
|
|
declare const index_AlignHorizontalDistributeStart: typeof AlignHorizontalDistributeStart;
|
||
|
|
declare const index_AlignHorizontalJustifyCenter: typeof AlignHorizontalJustifyCenter;
|
||
|
|
declare const index_AlignHorizontalJustifyEnd: typeof AlignHorizontalJustifyEnd;
|
||
|
|
declare const index_AlignHorizontalJustifyStart: typeof AlignHorizontalJustifyStart;
|
||
|
|
declare const index_AlignHorizontalSpaceAround: typeof AlignHorizontalSpaceAround;
|
||
|
|
declare const index_AlignHorizontalSpaceBetween: typeof AlignHorizontalSpaceBetween;
|
||
|
|
declare const index_AlignJustify: typeof AlignJustify;
|
||
|
|
declare const index_AlignLeft: typeof AlignLeft;
|
||
|
|
declare const index_AlignRight: typeof AlignRight;
|
||
|
|
declare const index_AlignStartHorizontal: typeof AlignStartHorizontal;
|
||
|
|
declare const index_AlignStartVertical: typeof AlignStartVertical;
|
||
|
|
declare const index_AlignVerticalDistributeCenter: typeof AlignVerticalDistributeCenter;
|
||
|
|
declare const index_AlignVerticalDistributeEnd: typeof AlignVerticalDistributeEnd;
|
||
|
|
declare const index_AlignVerticalDistributeStart: typeof AlignVerticalDistributeStart;
|
||
|
|
declare const index_AlignVerticalJustifyCenter: typeof AlignVerticalJustifyCenter;
|
||
|
|
declare const index_AlignVerticalJustifyEnd: typeof AlignVerticalJustifyEnd;
|
||
|
|
declare const index_AlignVerticalJustifyStart: typeof AlignVerticalJustifyStart;
|
||
|
|
declare const index_AlignVerticalSpaceAround: typeof AlignVerticalSpaceAround;
|
||
|
|
declare const index_AlignVerticalSpaceBetween: typeof AlignVerticalSpaceBetween;
|
||
|
|
declare const index_Ambulance: typeof Ambulance;
|
||
|
|
declare const index_Ampersand: typeof Ampersand;
|
||
|
|
declare const index_Ampersands: typeof Ampersands;
|
||
|
|
declare const index_Amphora: typeof Amphora;
|
||
|
|
declare const index_Anchor: typeof Anchor;
|
||
|
|
declare const index_Angry: typeof Angry;
|
||
|
|
declare const index_Annoyed: typeof Annoyed;
|
||
|
|
declare const index_Antenna: typeof Antenna;
|
||
|
|
declare const index_Anvil: typeof Anvil;
|
||
|
|
declare const index_Aperture: typeof Aperture;
|
||
|
|
declare const index_AppWindow: typeof AppWindow;
|
||
|
|
declare const index_AppWindowMac: typeof AppWindowMac;
|
||
|
|
declare const index_Apple: typeof Apple;
|
||
|
|
declare const index_Archive: typeof Archive;
|
||
|
|
declare const index_ArchiveRestore: typeof ArchiveRestore;
|
||
|
|
declare const index_ArchiveX: typeof ArchiveX;
|
||
|
|
declare const index_Armchair: typeof Armchair;
|
||
|
|
declare const index_ArrowBigDown: typeof ArrowBigDown;
|
||
|
|
declare const index_ArrowBigDownDash: typeof ArrowBigDownDash;
|
||
|
|
declare const index_ArrowBigLeft: typeof ArrowBigLeft;
|
||
|
|
declare const index_ArrowBigLeftDash: typeof ArrowBigLeftDash;
|
||
|
|
declare const index_ArrowBigRight: typeof ArrowBigRight;
|
||
|
|
declare const index_ArrowBigRightDash: typeof ArrowBigRightDash;
|
||
|
|
declare const index_ArrowBigUp: typeof ArrowBigUp;
|
||
|
|
declare const index_ArrowBigUpDash: typeof ArrowBigUpDash;
|
||
|
|
declare const index_ArrowDown: typeof ArrowDown;
|
||
|
|
declare const index_ArrowDown01: typeof ArrowDown01;
|
||
|
|
declare const index_ArrowDown10: typeof ArrowDown10;
|
||
|
|
declare const index_ArrowDownAZ: typeof ArrowDownAZ;
|
||
|
|
declare const index_ArrowDownFromLine: typeof ArrowDownFromLine;
|
||
|
|
declare const index_ArrowDownLeft: typeof ArrowDownLeft;
|
||
|
|
declare const index_ArrowDownNarrowWide: typeof ArrowDownNarrowWide;
|
||
|
|
declare const index_ArrowDownRight: typeof ArrowDownRight;
|
||
|
|
declare const index_ArrowDownToDot: typeof ArrowDownToDot;
|
||
|
|
declare const index_ArrowDownToLine: typeof ArrowDownToLine;
|
||
|
|
declare const index_ArrowDownUp: typeof ArrowDownUp;
|
||
|
|
declare const index_ArrowDownWideNarrow: typeof ArrowDownWideNarrow;
|
||
|
|
declare const index_ArrowDownZA: typeof ArrowDownZA;
|
||
|
|
declare const index_ArrowLeft: typeof ArrowLeft;
|
||
|
|
declare const index_ArrowLeftFromLine: typeof ArrowLeftFromLine;
|
||
|
|
declare const index_ArrowLeftRight: typeof ArrowLeftRight;
|
||
|
|
declare const index_ArrowLeftToLine: typeof ArrowLeftToLine;
|
||
|
|
declare const index_ArrowRight: typeof ArrowRight;
|
||
|
|
declare const index_ArrowRightFromLine: typeof ArrowRightFromLine;
|
||
|
|
declare const index_ArrowRightLeft: typeof ArrowRightLeft;
|
||
|
|
declare const index_ArrowRightToLine: typeof ArrowRightToLine;
|
||
|
|
declare const index_ArrowUp: typeof ArrowUp;
|
||
|
|
declare const index_ArrowUp01: typeof ArrowUp01;
|
||
|
|
declare const index_ArrowUp10: typeof ArrowUp10;
|
||
|
|
declare const index_ArrowUpAZ: typeof ArrowUpAZ;
|
||
|
|
declare const index_ArrowUpDown: typeof ArrowUpDown;
|
||
|
|
declare const index_ArrowUpFromDot: typeof ArrowUpFromDot;
|
||
|
|
declare const index_ArrowUpFromLine: typeof ArrowUpFromLine;
|
||
|
|
declare const index_ArrowUpLeft: typeof ArrowUpLeft;
|
||
|
|
declare const index_ArrowUpNarrowWide: typeof ArrowUpNarrowWide;
|
||
|
|
declare const index_ArrowUpRight: typeof ArrowUpRight;
|
||
|
|
declare const index_ArrowUpToLine: typeof ArrowUpToLine;
|
||
|
|
declare const index_ArrowUpWideNarrow: typeof ArrowUpWideNarrow;
|
||
|
|
declare const index_ArrowUpZA: typeof ArrowUpZA;
|
||
|
|
declare const index_ArrowsUpFromLine: typeof ArrowsUpFromLine;
|
||
|
|
declare const index_Asterisk: typeof Asterisk;
|
||
|
|
declare const index_AtSign: typeof AtSign;
|
||
|
|
declare const index_Atom: typeof Atom;
|
||
|
|
declare const index_AudioLines: typeof AudioLines;
|
||
|
|
declare const index_AudioWaveform: typeof AudioWaveform;
|
||
|
|
declare const index_Award: typeof Award;
|
||
|
|
declare const index_Axe: typeof Axe;
|
||
|
|
declare const index_Axis3d: typeof Axis3d;
|
||
|
|
declare const index_Baby: typeof Baby;
|
||
|
|
declare const index_Backpack: typeof Backpack;
|
||
|
|
declare const index_Badge: typeof Badge;
|
||
|
|
declare const index_BadgeAlert: typeof BadgeAlert;
|
||
|
|
declare const index_BadgeCent: typeof BadgeCent;
|
||
|
|
declare const index_BadgeCheck: typeof BadgeCheck;
|
||
|
|
declare const index_BadgeDollarSign: typeof BadgeDollarSign;
|
||
|
|
declare const index_BadgeEuro: typeof BadgeEuro;
|
||
|
|
declare const index_BadgeHelp: typeof BadgeHelp;
|
||
|
|
declare const index_BadgeIndianRupee: typeof BadgeIndianRupee;
|
||
|
|
declare const index_BadgeInfo: typeof BadgeInfo;
|
||
|
|
declare const index_BadgeJapaneseYen: typeof BadgeJapaneseYen;
|
||
|
|
declare const index_BadgeMinus: typeof BadgeMinus;
|
||
|
|
declare const index_BadgePercent: typeof BadgePercent;
|
||
|
|
declare const index_BadgePlus: typeof BadgePlus;
|
||
|
|
declare const index_BadgePoundSterling: typeof BadgePoundSterling;
|
||
|
|
declare const index_BadgeRussianRuble: typeof BadgeRussianRuble;
|
||
|
|
declare const index_BadgeSwissFranc: typeof BadgeSwissFranc;
|
||
|
|
declare const index_BadgeX: typeof BadgeX;
|
||
|
|
declare const index_BaggageClaim: typeof BaggageClaim;
|
||
|
|
declare const index_Ban: typeof Ban;
|
||
|
|
declare const index_Banana: typeof Banana;
|
||
|
|
declare const index_Bandage: typeof Bandage;
|
||
|
|
declare const index_Banknote: typeof Banknote;
|
||
|
|
declare const index_Barcode: typeof Barcode;
|
||
|
|
declare const index_Baseline: typeof Baseline;
|
||
|
|
declare const index_Bath: typeof Bath;
|
||
|
|
declare const index_Battery: typeof Battery;
|
||
|
|
declare const index_BatteryCharging: typeof BatteryCharging;
|
||
|
|
declare const index_BatteryFull: typeof BatteryFull;
|
||
|
|
declare const index_BatteryLow: typeof BatteryLow;
|
||
|
|
declare const index_BatteryMedium: typeof BatteryMedium;
|
||
|
|
declare const index_BatteryWarning: typeof BatteryWarning;
|
||
|
|
declare const index_Beaker: typeof Beaker;
|
||
|
|
declare const index_Bean: typeof Bean;
|
||
|
|
declare const index_BeanOff: typeof BeanOff;
|
||
|
|
declare const index_Bed: typeof Bed;
|
||
|
|
declare const index_BedDouble: typeof BedDouble;
|
||
|
|
declare const index_BedSingle: typeof BedSingle;
|
||
|
|
declare const index_Beef: typeof Beef;
|
||
|
|
declare const index_Beer: typeof Beer;
|
||
|
|
declare const index_BeerOff: typeof BeerOff;
|
||
|
|
declare const index_Bell: typeof Bell;
|
||
|
|
declare const index_BellDot: typeof BellDot;
|
||
|
|
declare const index_BellElectric: typeof BellElectric;
|
||
|
|
declare const index_BellMinus: typeof BellMinus;
|
||
|
|
declare const index_BellOff: typeof BellOff;
|
||
|
|
declare const index_BellPlus: typeof BellPlus;
|
||
|
|
declare const index_BellRing: typeof BellRing;
|
||
|
|
declare const index_BetweenHorizontalEnd: typeof BetweenHorizontalEnd;
|
||
|
|
declare const index_BetweenHorizontalStart: typeof BetweenHorizontalStart;
|
||
|
|
declare const index_BetweenVerticalEnd: typeof BetweenVerticalEnd;
|
||
|
|
declare const index_BetweenVerticalStart: typeof BetweenVerticalStart;
|
||
|
|
declare const index_BicepsFlexed: typeof BicepsFlexed;
|
||
|
|
declare const index_Bike: typeof Bike;
|
||
|
|
declare const index_Binary: typeof Binary;
|
||
|
|
declare const index_Binoculars: typeof Binoculars;
|
||
|
|
declare const index_Biohazard: typeof Biohazard;
|
||
|
|
declare const index_Bird: typeof Bird;
|
||
|
|
declare const index_Bitcoin: typeof Bitcoin;
|
||
|
|
declare const index_Blend: typeof Blend;
|
||
|
|
declare const index_Blinds: typeof Blinds;
|
||
|
|
declare const index_Blocks: typeof Blocks;
|
||
|
|
declare const index_Bluetooth: typeof Bluetooth;
|
||
|
|
declare const index_BluetoothConnected: typeof BluetoothConnected;
|
||
|
|
declare const index_BluetoothOff: typeof BluetoothOff;
|
||
|
|
declare const index_BluetoothSearching: typeof BluetoothSearching;
|
||
|
|
declare const index_Bold: typeof Bold;
|
||
|
|
declare const index_Bolt: typeof Bolt;
|
||
|
|
declare const index_Bomb: typeof Bomb;
|
||
|
|
declare const index_Bone: typeof Bone;
|
||
|
|
declare const index_Book: typeof Book;
|
||
|
|
declare const index_BookA: typeof BookA;
|
||
|
|
declare const index_BookAudio: typeof BookAudio;
|
||
|
|
declare const index_BookCheck: typeof BookCheck;
|
||
|
|
declare const index_BookCopy: typeof BookCopy;
|
||
|
|
declare const index_BookDashed: typeof BookDashed;
|
||
|
|
declare const index_BookDown: typeof BookDown;
|
||
|
|
declare const index_BookHeadphones: typeof BookHeadphones;
|
||
|
|
declare const index_BookHeart: typeof BookHeart;
|
||
|
|
declare const index_BookImage: typeof BookImage;
|
||
|
|
declare const index_BookKey: typeof BookKey;
|
||
|
|
declare const index_BookLock: typeof BookLock;
|
||
|
|
declare const index_BookMarked: typeof BookMarked;
|
||
|
|
declare const index_BookMinus: typeof BookMinus;
|
||
|
|
declare const index_BookOpen: typeof BookOpen;
|
||
|
|
declare const index_BookOpenCheck: typeof BookOpenCheck;
|
||
|
|
declare const index_BookOpenText: typeof BookOpenText;
|
||
|
|
declare const index_BookPlus: typeof BookPlus;
|
||
|
|
declare const index_BookText: typeof BookText;
|
||
|
|
declare const index_BookType: typeof BookType;
|
||
|
|
declare const index_BookUp: typeof BookUp;
|
||
|
|
declare const index_BookUp2: typeof BookUp2;
|
||
|
|
declare const index_BookUser: typeof BookUser;
|
||
|
|
declare const index_BookX: typeof BookX;
|
||
|
|
declare const index_Bookmark: typeof Bookmark;
|
||
|
|
declare const index_BookmarkCheck: typeof BookmarkCheck;
|
||
|
|
declare const index_BookmarkMinus: typeof BookmarkMinus;
|
||
|
|
declare const index_BookmarkPlus: typeof BookmarkPlus;
|
||
|
|
declare const index_BookmarkX: typeof BookmarkX;
|
||
|
|
declare const index_BoomBox: typeof BoomBox;
|
||
|
|
declare const index_Bot: typeof Bot;
|
||
|
|
declare const index_BotMessageSquare: typeof BotMessageSquare;
|
||
|
|
declare const index_BotOff: typeof BotOff;
|
||
|
|
declare const index_Box: typeof Box;
|
||
|
|
declare const index_Boxes: typeof Boxes;
|
||
|
|
declare const index_Braces: typeof Braces;
|
||
|
|
declare const index_Brackets: typeof Brackets;
|
||
|
|
declare const index_Brain: typeof Brain;
|
||
|
|
declare const index_BrainCircuit: typeof BrainCircuit;
|
||
|
|
declare const index_BrainCog: typeof BrainCog;
|
||
|
|
declare const index_BrickWall: typeof BrickWall;
|
||
|
|
declare const index_Briefcase: typeof Briefcase;
|
||
|
|
declare const index_BriefcaseBusiness: typeof BriefcaseBusiness;
|
||
|
|
declare const index_BriefcaseConveyorBelt: typeof BriefcaseConveyorBelt;
|
||
|
|
declare const index_BriefcaseMedical: typeof BriefcaseMedical;
|
||
|
|
declare const index_BringToFront: typeof BringToFront;
|
||
|
|
declare const index_Brush: typeof Brush;
|
||
|
|
declare const index_Bug: typeof Bug;
|
||
|
|
declare const index_BugOff: typeof BugOff;
|
||
|
|
declare const index_BugPlay: typeof BugPlay;
|
||
|
|
declare const index_Building: typeof Building;
|
||
|
|
declare const index_Building2: typeof Building2;
|
||
|
|
declare const index_Bus: typeof Bus;
|
||
|
|
declare const index_BusFront: typeof BusFront;
|
||
|
|
declare const index_Cable: typeof Cable;
|
||
|
|
declare const index_CableCar: typeof CableCar;
|
||
|
|
declare const index_Cake: typeof Cake;
|
||
|
|
declare const index_CakeSlice: typeof CakeSlice;
|
||
|
|
declare const index_Calculator: typeof Calculator;
|
||
|
|
declare const index_Calendar: typeof Calendar;
|
||
|
|
declare const index_Calendar1: typeof Calendar1;
|
||
|
|
declare const index_CalendarArrowDown: typeof CalendarArrowDown;
|
||
|
|
declare const index_CalendarArrowUp: typeof CalendarArrowUp;
|
||
|
|
declare const index_CalendarCheck: typeof CalendarCheck;
|
||
|
|
declare const index_CalendarCheck2: typeof CalendarCheck2;
|
||
|
|
declare const index_CalendarClock: typeof CalendarClock;
|
||
|
|
declare const index_CalendarCog: typeof CalendarCog;
|
||
|
|
declare const index_CalendarDays: typeof CalendarDays;
|
||
|
|
declare const index_CalendarFold: typeof CalendarFold;
|
||
|
|
declare const index_CalendarHeart: typeof CalendarHeart;
|
||
|
|
declare const index_CalendarMinus: typeof CalendarMinus;
|
||
|
|
declare const index_CalendarMinus2: typeof CalendarMinus2;
|
||
|
|
declare const index_CalendarOff: typeof CalendarOff;
|
||
|
|
declare const index_CalendarPlus: typeof CalendarPlus;
|
||
|
|
declare const index_CalendarPlus2: typeof CalendarPlus2;
|
||
|
|
declare const index_CalendarRange: typeof CalendarRange;
|
||
|
|
declare const index_CalendarSearch: typeof CalendarSearch;
|
||
|
|
declare const index_CalendarSync: typeof CalendarSync;
|
||
|
|
declare const index_CalendarX: typeof CalendarX;
|
||
|
|
declare const index_CalendarX2: typeof CalendarX2;
|
||
|
|
declare const index_Camera: typeof Camera;
|
||
|
|
declare const index_CameraOff: typeof CameraOff;
|
||
|
|
declare const index_Candy: typeof Candy;
|
||
|
|
declare const index_CandyCane: typeof CandyCane;
|
||
|
|
declare const index_CandyOff: typeof CandyOff;
|
||
|
|
declare const index_Cannabis: typeof Cannabis;
|
||
|
|
declare const index_Captions: typeof Captions;
|
||
|
|
declare const index_CaptionsOff: typeof CaptionsOff;
|
||
|
|
declare const index_Car: typeof Car;
|
||
|
|
declare const index_CarFront: typeof CarFront;
|
||
|
|
declare const index_CarTaxiFront: typeof CarTaxiFront;
|
||
|
|
declare const index_Caravan: typeof Caravan;
|
||
|
|
declare const index_Carrot: typeof Carrot;
|
||
|
|
declare const index_CaseLower: typeof CaseLower;
|
||
|
|
declare const index_CaseSensitive: typeof CaseSensitive;
|
||
|
|
declare const index_CaseUpper: typeof CaseUpper;
|
||
|
|
declare const index_CassetteTape: typeof CassetteTape;
|
||
|
|
declare const index_Cast: typeof Cast;
|
||
|
|
declare const index_Castle: typeof Castle;
|
||
|
|
declare const index_Cat: typeof Cat;
|
||
|
|
declare const index_Cctv: typeof Cctv;
|
||
|
|
declare const index_ChartArea: typeof ChartArea;
|
||
|
|
declare const index_ChartBar: typeof ChartBar;
|
||
|
|
declare const index_ChartBarBig: typeof ChartBarBig;
|
||
|
|
declare const index_ChartBarDecreasing: typeof ChartBarDecreasing;
|
||
|
|
declare const index_ChartBarIncreasing: typeof ChartBarIncreasing;
|
||
|
|
declare const index_ChartBarStacked: typeof ChartBarStacked;
|
||
|
|
declare const index_ChartCandlestick: typeof ChartCandlestick;
|
||
|
|
declare const index_ChartColumn: typeof ChartColumn;
|
||
|
|
declare const index_ChartColumnBig: typeof ChartColumnBig;
|
||
|
|
declare const index_ChartColumnDecreasing: typeof ChartColumnDecreasing;
|
||
|
|
declare const index_ChartColumnIncreasing: typeof ChartColumnIncreasing;
|
||
|
|
declare const index_ChartColumnStacked: typeof ChartColumnStacked;
|
||
|
|
declare const index_ChartGantt: typeof ChartGantt;
|
||
|
|
declare const index_ChartLine: typeof ChartLine;
|
||
|
|
declare const index_ChartNetwork: typeof ChartNetwork;
|
||
|
|
declare const index_ChartNoAxesColumn: typeof ChartNoAxesColumn;
|
||
|
|
declare const index_ChartNoAxesColumnDecreasing: typeof ChartNoAxesColumnDecreasing;
|
||
|
|
declare const index_ChartNoAxesColumnIncreasing: typeof ChartNoAxesColumnIncreasing;
|
||
|
|
declare const index_ChartNoAxesCombined: typeof ChartNoAxesCombined;
|
||
|
|
declare const index_ChartNoAxesGantt: typeof ChartNoAxesGantt;
|
||
|
|
declare const index_ChartPie: typeof ChartPie;
|
||
|
|
declare const index_ChartScatter: typeof ChartScatter;
|
||
|
|
declare const index_ChartSpline: typeof ChartSpline;
|
||
|
|
declare const index_Check: typeof Check;
|
||
|
|
declare const index_CheckCheck: typeof CheckCheck;
|
||
|
|
declare const index_ChefHat: typeof ChefHat;
|
||
|
|
declare const index_Cherry: typeof Cherry;
|
||
|
|
declare const index_ChevronDown: typeof ChevronDown;
|
||
|
|
declare const index_ChevronFirst: typeof ChevronFirst;
|
||
|
|
declare const index_ChevronLast: typeof ChevronLast;
|
||
|
|
declare const index_ChevronLeft: typeof ChevronLeft;
|
||
|
|
declare const index_ChevronRight: typeof ChevronRight;
|
||
|
|
declare const index_ChevronUp: typeof ChevronUp;
|
||
|
|
declare const index_ChevronsDown: typeof ChevronsDown;
|
||
|
|
declare const index_ChevronsDownUp: typeof ChevronsDownUp;
|
||
|
|
declare const index_ChevronsLeft: typeof ChevronsLeft;
|
||
|
|
declare const index_ChevronsLeftRight: typeof ChevronsLeftRight;
|
||
|
|
declare const index_ChevronsLeftRightEllipsis: typeof ChevronsLeftRightEllipsis;
|
||
|
|
declare const index_ChevronsRight: typeof ChevronsRight;
|
||
|
|
declare const index_ChevronsRightLeft: typeof ChevronsRightLeft;
|
||
|
|
declare const index_ChevronsUp: typeof ChevronsUp;
|
||
|
|
declare const index_ChevronsUpDown: typeof ChevronsUpDown;
|
||
|
|
declare const index_Chrome: typeof Chrome;
|
||
|
|
declare const index_Church: typeof Church;
|
||
|
|
declare const index_Cigarette: typeof Cigarette;
|
||
|
|
declare const index_CigaretteOff: typeof CigaretteOff;
|
||
|
|
declare const index_Circle: typeof Circle;
|
||
|
|
declare const index_CircleAlert: typeof CircleAlert;
|
||
|
|
declare const index_CircleArrowDown: typeof CircleArrowDown;
|
||
|
|
declare const index_CircleArrowLeft: typeof CircleArrowLeft;
|
||
|
|
declare const index_CircleArrowOutDownLeft: typeof CircleArrowOutDownLeft;
|
||
|
|
declare const index_CircleArrowOutDownRight: typeof CircleArrowOutDownRight;
|
||
|
|
declare const index_CircleArrowOutUpLeft: typeof CircleArrowOutUpLeft;
|
||
|
|
declare const index_CircleArrowOutUpRight: typeof CircleArrowOutUpRight;
|
||
|
|
declare const index_CircleArrowRight: typeof CircleArrowRight;
|
||
|
|
declare const index_CircleArrowUp: typeof CircleArrowUp;
|
||
|
|
declare const index_CircleCheck: typeof CircleCheck;
|
||
|
|
declare const index_CircleCheckBig: typeof CircleCheckBig;
|
||
|
|
declare const index_CircleChevronDown: typeof CircleChevronDown;
|
||
|
|
declare const index_CircleChevronLeft: typeof CircleChevronLeft;
|
||
|
|
declare const index_CircleChevronRight: typeof CircleChevronRight;
|
||
|
|
declare const index_CircleChevronUp: typeof CircleChevronUp;
|
||
|
|
declare const index_CircleDashed: typeof CircleDashed;
|
||
|
|
declare const index_CircleDivide: typeof CircleDivide;
|
||
|
|
declare const index_CircleDollarSign: typeof CircleDollarSign;
|
||
|
|
declare const index_CircleDot: typeof CircleDot;
|
||
|
|
declare const index_CircleDotDashed: typeof CircleDotDashed;
|
||
|
|
declare const index_CircleEllipsis: typeof CircleEllipsis;
|
||
|
|
declare const index_CircleEqual: typeof CircleEqual;
|
||
|
|
declare const index_CircleFadingArrowUp: typeof CircleFadingArrowUp;
|
||
|
|
declare const index_CircleFadingPlus: typeof CircleFadingPlus;
|
||
|
|
declare const index_CircleGauge: typeof CircleGauge;
|
||
|
|
declare const index_CircleHelp: typeof CircleHelp;
|
||
|
|
declare const index_CircleMinus: typeof CircleMinus;
|
||
|
|
declare const index_CircleOff: typeof CircleOff;
|
||
|
|
declare const index_CircleParking: typeof CircleParking;
|
||
|
|
declare const index_CircleParkingOff: typeof CircleParkingOff;
|
||
|
|
declare const index_CirclePause: typeof CirclePause;
|
||
|
|
declare const index_CirclePercent: typeof CirclePercent;
|
||
|
|
declare const index_CirclePlay: typeof CirclePlay;
|
||
|
|
declare const index_CirclePlus: typeof CirclePlus;
|
||
|
|
declare const index_CirclePower: typeof CirclePower;
|
||
|
|
declare const index_CircleSlash: typeof CircleSlash;
|
||
|
|
declare const index_CircleSlash2: typeof CircleSlash2;
|
||
|
|
declare const index_CircleStop: typeof CircleStop;
|
||
|
|
declare const index_CircleUser: typeof CircleUser;
|
||
|
|
declare const index_CircleUserRound: typeof CircleUserRound;
|
||
|
|
declare const index_CircleX: typeof CircleX;
|
||
|
|
declare const index_CircuitBoard: typeof CircuitBoard;
|
||
|
|
declare const index_Citrus: typeof Citrus;
|
||
|
|
declare const index_Clapperboard: typeof Clapperboard;
|
||
|
|
declare const index_Clipboard: typeof Clipboard;
|
||
|
|
declare const index_ClipboardCheck: typeof ClipboardCheck;
|
||
|
|
declare const index_ClipboardCopy: typeof ClipboardCopy;
|
||
|
|
declare const index_ClipboardList: typeof ClipboardList;
|
||
|
|
declare const index_ClipboardMinus: typeof ClipboardMinus;
|
||
|
|
declare const index_ClipboardPaste: typeof ClipboardPaste;
|
||
|
|
declare const index_ClipboardPen: typeof ClipboardPen;
|
||
|
|
declare const index_ClipboardPenLine: typeof ClipboardPenLine;
|
||
|
|
declare const index_ClipboardPlus: typeof ClipboardPlus;
|
||
|
|
declare const index_ClipboardType: typeof ClipboardType;
|
||
|
|
declare const index_ClipboardX: typeof ClipboardX;
|
||
|
|
declare const index_Clock: typeof Clock;
|
||
|
|
declare const index_Clock1: typeof Clock1;
|
||
|
|
declare const index_Clock10: typeof Clock10;
|
||
|
|
declare const index_Clock11: typeof Clock11;
|
||
|
|
declare const index_Clock12: typeof Clock12;
|
||
|
|
declare const index_Clock2: typeof Clock2;
|
||
|
|
declare const index_Clock3: typeof Clock3;
|
||
|
|
declare const index_Clock4: typeof Clock4;
|
||
|
|
declare const index_Clock5: typeof Clock5;
|
||
|
|
declare const index_Clock6: typeof Clock6;
|
||
|
|
declare const index_Clock7: typeof Clock7;
|
||
|
|
declare const index_Clock8: typeof Clock8;
|
||
|
|
declare const index_Clock9: typeof Clock9;
|
||
|
|
declare const index_ClockAlert: typeof ClockAlert;
|
||
|
|
declare const index_ClockArrowDown: typeof ClockArrowDown;
|
||
|
|
declare const index_ClockArrowUp: typeof ClockArrowUp;
|
||
|
|
declare const index_Cloud: typeof Cloud;
|
||
|
|
declare const index_CloudAlert: typeof CloudAlert;
|
||
|
|
declare const index_CloudCog: typeof CloudCog;
|
||
|
|
declare const index_CloudDownload: typeof CloudDownload;
|
||
|
|
declare const index_CloudDrizzle: typeof CloudDrizzle;
|
||
|
|
declare const index_CloudFog: typeof CloudFog;
|
||
|
|
declare const index_CloudHail: typeof CloudHail;
|
||
|
|
declare const index_CloudLightning: typeof CloudLightning;
|
||
|
|
declare const index_CloudMoon: typeof CloudMoon;
|
||
|
|
declare const index_CloudMoonRain: typeof CloudMoonRain;
|
||
|
|
declare const index_CloudOff: typeof CloudOff;
|
||
|
|
declare const index_CloudRain: typeof CloudRain;
|
||
|
|
declare const index_CloudRainWind: typeof CloudRainWind;
|
||
|
|
declare const index_CloudSnow: typeof CloudSnow;
|
||
|
|
declare const index_CloudSun: typeof CloudSun;
|
||
|
|
declare const index_CloudSunRain: typeof CloudSunRain;
|
||
|
|
declare const index_CloudUpload: typeof CloudUpload;
|
||
|
|
declare const index_Cloudy: typeof Cloudy;
|
||
|
|
declare const index_Clover: typeof Clover;
|
||
|
|
declare const index_Club: typeof Club;
|
||
|
|
declare const index_Code: typeof Code;
|
||
|
|
declare const index_CodeXml: typeof CodeXml;
|
||
|
|
declare const index_Codepen: typeof Codepen;
|
||
|
|
declare const index_Codesandbox: typeof Codesandbox;
|
||
|
|
declare const index_Coffee: typeof Coffee;
|
||
|
|
declare const index_Cog: typeof Cog;
|
||
|
|
declare const index_Coins: typeof Coins;
|
||
|
|
declare const index_Columns2: typeof Columns2;
|
||
|
|
declare const index_Columns3: typeof Columns3;
|
||
|
|
declare const index_Columns4: typeof Columns4;
|
||
|
|
declare const index_Combine: typeof Combine;
|
||
|
|
declare const index_Command: typeof Command;
|
||
|
|
declare const index_Compass: typeof Compass;
|
||
|
|
declare const index_Component: typeof Component;
|
||
|
|
declare const index_Computer: typeof Computer;
|
||
|
|
declare const index_ConciergeBell: typeof ConciergeBell;
|
||
|
|
declare const index_Cone: typeof Cone;
|
||
|
|
declare const index_Construction: typeof Construction;
|
||
|
|
declare const index_Contact: typeof Contact;
|
||
|
|
declare const index_ContactRound: typeof ContactRound;
|
||
|
|
declare const index_Container: typeof Container;
|
||
|
|
declare const index_Contrast: typeof Contrast;
|
||
|
|
declare const index_Cookie: typeof Cookie;
|
||
|
|
declare const index_CookingPot: typeof CookingPot;
|
||
|
|
declare const index_Copy: typeof Copy;
|
||
|
|
declare const index_CopyCheck: typeof CopyCheck;
|
||
|
|
declare const index_CopyMinus: typeof CopyMinus;
|
||
|
|
declare const index_CopyPlus: typeof CopyPlus;
|
||
|
|
declare const index_CopySlash: typeof CopySlash;
|
||
|
|
declare const index_CopyX: typeof CopyX;
|
||
|
|
declare const index_Copyleft: typeof Copyleft;
|
||
|
|
declare const index_Copyright: typeof Copyright;
|
||
|
|
declare const index_CornerDownLeft: typeof CornerDownLeft;
|
||
|
|
declare const index_CornerDownRight: typeof CornerDownRight;
|
||
|
|
declare const index_CornerLeftDown: typeof CornerLeftDown;
|
||
|
|
declare const index_CornerLeftUp: typeof CornerLeftUp;
|
||
|
|
declare const index_CornerRightDown: typeof CornerRightDown;
|
||
|
|
declare const index_CornerRightUp: typeof CornerRightUp;
|
||
|
|
declare const index_CornerUpLeft: typeof CornerUpLeft;
|
||
|
|
declare const index_CornerUpRight: typeof CornerUpRight;
|
||
|
|
declare const index_Cpu: typeof Cpu;
|
||
|
|
declare const index_CreativeCommons: typeof CreativeCommons;
|
||
|
|
declare const index_CreditCard: typeof CreditCard;
|
||
|
|
declare const index_Croissant: typeof Croissant;
|
||
|
|
declare const index_Crop: typeof Crop;
|
||
|
|
declare const index_Cross: typeof Cross;
|
||
|
|
declare const index_Crosshair: typeof Crosshair;
|
||
|
|
declare const index_Crown: typeof Crown;
|
||
|
|
declare const index_Cuboid: typeof Cuboid;
|
||
|
|
declare const index_CupSoda: typeof CupSoda;
|
||
|
|
declare const index_Currency: typeof Currency;
|
||
|
|
declare const index_Cylinder: typeof Cylinder;
|
||
|
|
declare const index_Dam: typeof Dam;
|
||
|
|
declare const index_Database: typeof Database;
|
||
|
|
declare const index_DatabaseBackup: typeof DatabaseBackup;
|
||
|
|
declare const index_DatabaseZap: typeof DatabaseZap;
|
||
|
|
declare const index_Delete: typeof Delete;
|
||
|
|
declare const index_Dessert: typeof Dessert;
|
||
|
|
declare const index_Diameter: typeof Diameter;
|
||
|
|
declare const index_Diamond: typeof Diamond;
|
||
|
|
declare const index_DiamondMinus: typeof DiamondMinus;
|
||
|
|
declare const index_DiamondPercent: typeof DiamondPercent;
|
||
|
|
declare const index_DiamondPlus: typeof DiamondPlus;
|
||
|
|
declare const index_Dice1: typeof Dice1;
|
||
|
|
declare const index_Dice2: typeof Dice2;
|
||
|
|
declare const index_Dice3: typeof Dice3;
|
||
|
|
declare const index_Dice4: typeof Dice4;
|
||
|
|
declare const index_Dice5: typeof Dice5;
|
||
|
|
declare const index_Dice6: typeof Dice6;
|
||
|
|
declare const index_Dices: typeof Dices;
|
||
|
|
declare const index_Diff: typeof Diff;
|
||
|
|
declare const index_Disc: typeof Disc;
|
||
|
|
declare const index_Disc2: typeof Disc2;
|
||
|
|
declare const index_Disc3: typeof Disc3;
|
||
|
|
declare const index_DiscAlbum: typeof DiscAlbum;
|
||
|
|
declare const index_Divide: typeof Divide;
|
||
|
|
declare const index_Dna: typeof Dna;
|
||
|
|
declare const index_DnaOff: typeof DnaOff;
|
||
|
|
declare const index_Dock: typeof Dock;
|
||
|
|
declare const index_Dog: typeof Dog;
|
||
|
|
declare const index_DollarSign: typeof DollarSign;
|
||
|
|
declare const index_Donut: typeof Donut;
|
||
|
|
declare const index_DoorClosed: typeof DoorClosed;
|
||
|
|
declare const index_DoorOpen: typeof DoorOpen;
|
||
|
|
declare const index_Dot: typeof Dot;
|
||
|
|
declare const index_Download: typeof Download;
|
||
|
|
declare const index_DraftingCompass: typeof DraftingCompass;
|
||
|
|
declare const index_Drama: typeof Drama;
|
||
|
|
declare const index_Dribbble: typeof Dribbble;
|
||
|
|
declare const index_Drill: typeof Drill;
|
||
|
|
declare const index_Droplet: typeof Droplet;
|
||
|
|
declare const index_Droplets: typeof Droplets;
|
||
|
|
declare const index_Drum: typeof Drum;
|
||
|
|
declare const index_Drumstick: typeof Drumstick;
|
||
|
|
declare const index_Dumbbell: typeof Dumbbell;
|
||
|
|
declare const index_Ear: typeof Ear;
|
||
|
|
declare const index_EarOff: typeof EarOff;
|
||
|
|
declare const index_Earth: typeof Earth;
|
||
|
|
declare const index_EarthLock: typeof EarthLock;
|
||
|
|
declare const index_Eclipse: typeof Eclipse;
|
||
|
|
declare const index_Egg: typeof Egg;
|
||
|
|
declare const index_EggFried: typeof EggFried;
|
||
|
|
declare const index_EggOff: typeof EggOff;
|
||
|
|
declare const index_Ellipsis: typeof Ellipsis;
|
||
|
|
declare const index_EllipsisVertical: typeof EllipsisVertical;
|
||
|
|
declare const index_Equal: typeof Equal;
|
||
|
|
declare const index_EqualApproximately: typeof EqualApproximately;
|
||
|
|
declare const index_EqualNot: typeof EqualNot;
|
||
|
|
declare const index_Eraser: typeof Eraser;
|
||
|
|
declare const index_EthernetPort: typeof EthernetPort;
|
||
|
|
declare const index_Euro: typeof Euro;
|
||
|
|
declare const index_Expand: typeof Expand;
|
||
|
|
declare const index_ExternalLink: typeof ExternalLink;
|
||
|
|
declare const index_Eye: typeof Eye;
|
||
|
|
declare const index_EyeClosed: typeof EyeClosed;
|
||
|
|
declare const index_EyeOff: typeof EyeOff;
|
||
|
|
declare const index_Facebook: typeof Facebook;
|
||
|
|
declare const index_Factory: typeof Factory;
|
||
|
|
declare const index_Fan: typeof Fan;
|
||
|
|
declare const index_FastForward: typeof FastForward;
|
||
|
|
declare const index_Feather: typeof Feather;
|
||
|
|
declare const index_Fence: typeof Fence;
|
||
|
|
declare const index_FerrisWheel: typeof FerrisWheel;
|
||
|
|
declare const index_Figma: typeof Figma;
|
||
|
|
declare const index_File: typeof File;
|
||
|
|
declare const index_FileArchive: typeof FileArchive;
|
||
|
|
declare const index_FileAudio: typeof FileAudio;
|
||
|
|
declare const index_FileAudio2: typeof FileAudio2;
|
||
|
|
declare const index_FileAxis3d: typeof FileAxis3d;
|
||
|
|
declare const index_FileBadge: typeof FileBadge;
|
||
|
|
declare const index_FileBadge2: typeof FileBadge2;
|
||
|
|
declare const index_FileBox: typeof FileBox;
|
||
|
|
declare const index_FileChartColumn: typeof FileChartColumn;
|
||
|
|
declare const index_FileChartColumnIncreasing: typeof FileChartColumnIncreasing;
|
||
|
|
declare const index_FileChartLine: typeof FileChartLine;
|
||
|
|
declare const index_FileChartPie: typeof FileChartPie;
|
||
|
|
declare const index_FileCheck: typeof FileCheck;
|
||
|
|
declare const index_FileCheck2: typeof FileCheck2;
|
||
|
|
declare const index_FileClock: typeof FileClock;
|
||
|
|
declare const index_FileCode: typeof FileCode;
|
||
|
|
declare const index_FileCode2: typeof FileCode2;
|
||
|
|
declare const index_FileCog: typeof FileCog;
|
||
|
|
declare const index_FileDiff: typeof FileDiff;
|
||
|
|
declare const index_FileDigit: typeof FileDigit;
|
||
|
|
declare const index_FileDown: typeof FileDown;
|
||
|
|
declare const index_FileHeart: typeof FileHeart;
|
||
|
|
declare const index_FileImage: typeof FileImage;
|
||
|
|
declare const index_FileInput: typeof FileInput;
|
||
|
|
declare const index_FileJson: typeof FileJson;
|
||
|
|
declare const index_FileJson2: typeof FileJson2;
|
||
|
|
declare const index_FileKey: typeof FileKey;
|
||
|
|
declare const index_FileKey2: typeof FileKey2;
|
||
|
|
declare const index_FileLock: typeof FileLock;
|
||
|
|
declare const index_FileLock2: typeof FileLock2;
|
||
|
|
declare const index_FileMinus: typeof FileMinus;
|
||
|
|
declare const index_FileMinus2: typeof FileMinus2;
|
||
|
|
declare const index_FileMusic: typeof FileMusic;
|
||
|
|
declare const index_FileOutput: typeof FileOutput;
|
||
|
|
declare const index_FilePen: typeof FilePen;
|
||
|
|
declare const index_FilePenLine: typeof FilePenLine;
|
||
|
|
declare const index_FilePlus: typeof FilePlus;
|
||
|
|
declare const index_FilePlus2: typeof FilePlus2;
|
||
|
|
declare const index_FileQuestion: typeof FileQuestion;
|
||
|
|
declare const index_FileScan: typeof FileScan;
|
||
|
|
declare const index_FileSearch: typeof FileSearch;
|
||
|
|
declare const index_FileSearch2: typeof FileSearch2;
|
||
|
|
declare const index_FileSliders: typeof FileSliders;
|
||
|
|
declare const index_FileSpreadsheet: typeof FileSpreadsheet;
|
||
|
|
declare const index_FileStack: typeof FileStack;
|
||
|
|
declare const index_FileSymlink: typeof FileSymlink;
|
||
|
|
declare const index_FileTerminal: typeof FileTerminal;
|
||
|
|
declare const index_FileText: typeof FileText;
|
||
|
|
declare const index_FileType: typeof FileType;
|
||
|
|
declare const index_FileType2: typeof FileType2;
|
||
|
|
declare const index_FileUp: typeof FileUp;
|
||
|
|
declare const index_FileUser: typeof FileUser;
|
||
|
|
declare const index_FileVideo: typeof FileVideo;
|
||
|
|
declare const index_FileVideo2: typeof FileVideo2;
|
||
|
|
declare const index_FileVolume: typeof FileVolume;
|
||
|
|
declare const index_FileVolume2: typeof FileVolume2;
|
||
|
|
declare const index_FileWarning: typeof FileWarning;
|
||
|
|
declare const index_FileX: typeof FileX;
|
||
|
|
declare const index_FileX2: typeof FileX2;
|
||
|
|
declare const index_Files: typeof Files;
|
||
|
|
declare const index_Film: typeof Film;
|
||
|
|
declare const index_Filter: typeof Filter;
|
||
|
|
declare const index_FilterX: typeof FilterX;
|
||
|
|
declare const index_Fingerprint: typeof Fingerprint;
|
||
|
|
declare const index_FireExtinguisher: typeof FireExtinguisher;
|
||
|
|
declare const index_Fish: typeof Fish;
|
||
|
|
declare const index_FishOff: typeof FishOff;
|
||
|
|
declare const index_FishSymbol: typeof FishSymbol;
|
||
|
|
declare const index_Flag: typeof Flag;
|
||
|
|
declare const index_FlagOff: typeof FlagOff;
|
||
|
|
declare const index_FlagTriangleLeft: typeof FlagTriangleLeft;
|
||
|
|
declare const index_FlagTriangleRight: typeof FlagTriangleRight;
|
||
|
|
declare const index_Flame: typeof Flame;
|
||
|
|
declare const index_FlameKindling: typeof FlameKindling;
|
||
|
|
declare const index_Flashlight: typeof Flashlight;
|
||
|
|
declare const index_FlashlightOff: typeof FlashlightOff;
|
||
|
|
declare const index_FlaskConical: typeof FlaskConical;
|
||
|
|
declare const index_FlaskConicalOff: typeof FlaskConicalOff;
|
||
|
|
declare const index_FlaskRound: typeof FlaskRound;
|
||
|
|
declare const index_FlipHorizontal: typeof FlipHorizontal;
|
||
|
|
declare const index_FlipHorizontal2: typeof FlipHorizontal2;
|
||
|
|
declare const index_FlipVertical: typeof FlipVertical;
|
||
|
|
declare const index_FlipVertical2: typeof FlipVertical2;
|
||
|
|
declare const index_Flower: typeof Flower;
|
||
|
|
declare const index_Flower2: typeof Flower2;
|
||
|
|
declare const index_Focus: typeof Focus;
|
||
|
|
declare const index_FoldHorizontal: typeof FoldHorizontal;
|
||
|
|
declare const index_FoldVertical: typeof FoldVertical;
|
||
|
|
declare const index_Folder: typeof Folder;
|
||
|
|
declare const index_FolderArchive: typeof FolderArchive;
|
||
|
|
declare const index_FolderCheck: typeof FolderCheck;
|
||
|
|
declare const index_FolderClock: typeof FolderClock;
|
||
|
|
declare const index_FolderClosed: typeof FolderClosed;
|
||
|
|
declare const index_FolderCode: typeof FolderCode;
|
||
|
|
declare const index_FolderCog: typeof FolderCog;
|
||
|
|
declare const index_FolderDot: typeof FolderDot;
|
||
|
|
declare const index_FolderDown: typeof FolderDown;
|
||
|
|
declare const index_FolderGit: typeof FolderGit;
|
||
|
|
declare const index_FolderGit2: typeof FolderGit2;
|
||
|
|
declare const index_FolderHeart: typeof FolderHeart;
|
||
|
|
declare const index_FolderInput: typeof FolderInput;
|
||
|
|
declare const index_FolderKanban: typeof FolderKanban;
|
||
|
|
declare const index_FolderKey: typeof FolderKey;
|
||
|
|
declare const index_FolderLock: typeof FolderLock;
|
||
|
|
declare const index_FolderMinus: typeof FolderMinus;
|
||
|
|
declare const index_FolderOpen: typeof FolderOpen;
|
||
|
|
declare const index_FolderOpenDot: typeof FolderOpenDot;
|
||
|
|
declare const index_FolderOutput: typeof FolderOutput;
|
||
|
|
declare const index_FolderPen: typeof FolderPen;
|
||
|
|
declare const index_FolderPlus: typeof FolderPlus;
|
||
|
|
declare const index_FolderRoot: typeof FolderRoot;
|
||
|
|
declare const index_FolderSearch: typeof FolderSearch;
|
||
|
|
declare const index_FolderSearch2: typeof FolderSearch2;
|
||
|
|
declare const index_FolderSymlink: typeof FolderSymlink;
|
||
|
|
declare const index_FolderSync: typeof FolderSync;
|
||
|
|
declare const index_FolderTree: typeof FolderTree;
|
||
|
|
declare const index_FolderUp: typeof FolderUp;
|
||
|
|
declare const index_FolderX: typeof FolderX;
|
||
|
|
declare const index_Folders: typeof Folders;
|
||
|
|
declare const index_Footprints: typeof Footprints;
|
||
|
|
declare const index_Forklift: typeof Forklift;
|
||
|
|
declare const index_Forward: typeof Forward;
|
||
|
|
declare const index_Frame: typeof Frame;
|
||
|
|
declare const index_Framer: typeof Framer;
|
||
|
|
declare const index_Frown: typeof Frown;
|
||
|
|
declare const index_Fuel: typeof Fuel;
|
||
|
|
declare const index_Fullscreen: typeof Fullscreen;
|
||
|
|
declare const index_GalleryHorizontal: typeof GalleryHorizontal;
|
||
|
|
declare const index_GalleryHorizontalEnd: typeof GalleryHorizontalEnd;
|
||
|
|
declare const index_GalleryThumbnails: typeof GalleryThumbnails;
|
||
|
|
declare const index_GalleryVertical: typeof GalleryVertical;
|
||
|
|
declare const index_GalleryVerticalEnd: typeof GalleryVerticalEnd;
|
||
|
|
declare const index_Gamepad: typeof Gamepad;
|
||
|
|
declare const index_Gamepad2: typeof Gamepad2;
|
||
|
|
declare const index_Gauge: typeof Gauge;
|
||
|
|
declare const index_Gavel: typeof Gavel;
|
||
|
|
declare const index_Gem: typeof Gem;
|
||
|
|
declare const index_Ghost: typeof Ghost;
|
||
|
|
declare const index_Gift: typeof Gift;
|
||
|
|
declare const index_GitBranch: typeof GitBranch;
|
||
|
|
declare const index_GitBranchPlus: typeof GitBranchPlus;
|
||
|
|
declare const index_GitCommitHorizontal: typeof GitCommitHorizontal;
|
||
|
|
declare const index_GitCommitVertical: typeof GitCommitVertical;
|
||
|
|
declare const index_GitCompare: typeof GitCompare;
|
||
|
|
declare const index_GitCompareArrows: typeof GitCompareArrows;
|
||
|
|
declare const index_GitFork: typeof GitFork;
|
||
|
|
declare const index_GitGraph: typeof GitGraph;
|
||
|
|
declare const index_GitMerge: typeof GitMerge;
|
||
|
|
declare const index_GitPullRequest: typeof GitPullRequest;
|
||
|
|
declare const index_GitPullRequestArrow: typeof GitPullRequestArrow;
|
||
|
|
declare const index_GitPullRequestClosed: typeof GitPullRequestClosed;
|
||
|
|
declare const index_GitPullRequestCreate: typeof GitPullRequestCreate;
|
||
|
|
declare const index_GitPullRequestCreateArrow: typeof GitPullRequestCreateArrow;
|
||
|
|
declare const index_GitPullRequestDraft: typeof GitPullRequestDraft;
|
||
|
|
declare const index_Github: typeof Github;
|
||
|
|
declare const index_Gitlab: typeof Gitlab;
|
||
|
|
declare const index_GlassWater: typeof GlassWater;
|
||
|
|
declare const index_Glasses: typeof Glasses;
|
||
|
|
declare const index_Globe: typeof Globe;
|
||
|
|
declare const index_GlobeLock: typeof GlobeLock;
|
||
|
|
declare const index_Goal: typeof Goal;
|
||
|
|
declare const index_Grab: typeof Grab;
|
||
|
|
declare const index_GraduationCap: typeof GraduationCap;
|
||
|
|
declare const index_Grape: typeof Grape;
|
||
|
|
declare const index_Grid2x2: typeof Grid2x2;
|
||
|
|
declare const index_Grid2x2Check: typeof Grid2x2Check;
|
||
|
|
declare const index_Grid2x2Plus: typeof Grid2x2Plus;
|
||
|
|
declare const index_Grid2x2X: typeof Grid2x2X;
|
||
|
|
declare const index_Grid3x3: typeof Grid3x3;
|
||
|
|
declare const index_Grip: typeof Grip;
|
||
|
|
declare const index_GripHorizontal: typeof GripHorizontal;
|
||
|
|
declare const index_GripVertical: typeof GripVertical;
|
||
|
|
declare const index_Group: typeof Group;
|
||
|
|
declare const index_Guitar: typeof Guitar;
|
||
|
|
declare const index_Ham: typeof Ham;
|
||
|
|
declare const index_Hammer: typeof Hammer;
|
||
|
|
declare const index_Hand: typeof Hand;
|
||
|
|
declare const index_HandCoins: typeof HandCoins;
|
||
|
|
declare const index_HandHeart: typeof HandHeart;
|
||
|
|
declare const index_HandHelping: typeof HandHelping;
|
||
|
|
declare const index_HandMetal: typeof HandMetal;
|
||
|
|
declare const index_HandPlatter: typeof HandPlatter;
|
||
|
|
declare const index_Handshake: typeof Handshake;
|
||
|
|
declare const index_HardDrive: typeof HardDrive;
|
||
|
|
declare const index_HardDriveDownload: typeof HardDriveDownload;
|
||
|
|
declare const index_HardDriveUpload: typeof HardDriveUpload;
|
||
|
|
declare const index_HardHat: typeof HardHat;
|
||
|
|
declare const index_Hash: typeof Hash;
|
||
|
|
declare const index_Haze: typeof Haze;
|
||
|
|
declare const index_HdmiPort: typeof HdmiPort;
|
||
|
|
declare const index_Heading: typeof Heading;
|
||
|
|
declare const index_Heading1: typeof Heading1;
|
||
|
|
declare const index_Heading2: typeof Heading2;
|
||
|
|
declare const index_Heading3: typeof Heading3;
|
||
|
|
declare const index_Heading4: typeof Heading4;
|
||
|
|
declare const index_Heading5: typeof Heading5;
|
||
|
|
declare const index_Heading6: typeof Heading6;
|
||
|
|
declare const index_HeadphoneOff: typeof HeadphoneOff;
|
||
|
|
declare const index_Headphones: typeof Headphones;
|
||
|
|
declare const index_Headset: typeof Headset;
|
||
|
|
declare const index_Heart: typeof Heart;
|
||
|
|
declare const index_HeartCrack: typeof HeartCrack;
|
||
|
|
declare const index_HeartHandshake: typeof HeartHandshake;
|
||
|
|
declare const index_HeartOff: typeof HeartOff;
|
||
|
|
declare const index_HeartPulse: typeof HeartPulse;
|
||
|
|
declare const index_Heater: typeof Heater;
|
||
|
|
declare const index_Hexagon: typeof Hexagon;
|
||
|
|
declare const index_Highlighter: typeof Highlighter;
|
||
|
|
declare const index_History: typeof History;
|
||
|
|
declare const index_Hop: typeof Hop;
|
||
|
|
declare const index_HopOff: typeof HopOff;
|
||
|
|
declare const index_Hospital: typeof Hospital;
|
||
|
|
declare const index_Hotel: typeof Hotel;
|
||
|
|
declare const index_Hourglass: typeof Hourglass;
|
||
|
|
declare const index_House: typeof House;
|
||
|
|
declare const index_HousePlug: typeof HousePlug;
|
||
|
|
declare const index_HousePlus: typeof HousePlus;
|
||
|
|
declare const index_IceCreamBowl: typeof IceCreamBowl;
|
||
|
|
declare const index_IceCreamCone: typeof IceCreamCone;
|
||
|
|
declare const index_IdCard: typeof IdCard;
|
||
|
|
declare const index_Image: typeof Image;
|
||
|
|
declare const index_ImageDown: typeof ImageDown;
|
||
|
|
declare const index_ImageMinus: typeof ImageMinus;
|
||
|
|
declare const index_ImageOff: typeof ImageOff;
|
||
|
|
declare const index_ImagePlay: typeof ImagePlay;
|
||
|
|
declare const index_ImagePlus: typeof ImagePlus;
|
||
|
|
declare const index_ImageUp: typeof ImageUp;
|
||
|
|
declare const index_ImageUpscale: typeof ImageUpscale;
|
||
|
|
declare const index_Images: typeof Images;
|
||
|
|
declare const index_Import: typeof Import;
|
||
|
|
declare const index_Inbox: typeof Inbox;
|
||
|
|
declare const index_IndentDecrease: typeof IndentDecrease;
|
||
|
|
declare const index_IndentIncrease: typeof IndentIncrease;
|
||
|
|
declare const index_IndianRupee: typeof IndianRupee;
|
||
|
|
declare const index_Infinity: typeof Infinity;
|
||
|
|
declare const index_Info: typeof Info;
|
||
|
|
declare const index_InspectionPanel: typeof InspectionPanel;
|
||
|
|
declare const index_Instagram: typeof Instagram;
|
||
|
|
declare const index_Italic: typeof Italic;
|
||
|
|
declare const index_IterationCcw: typeof IterationCcw;
|
||
|
|
declare const index_IterationCw: typeof IterationCw;
|
||
|
|
declare const index_JapaneseYen: typeof JapaneseYen;
|
||
|
|
declare const index_Joystick: typeof Joystick;
|
||
|
|
declare const index_Kanban: typeof Kanban;
|
||
|
|
declare const index_Key: typeof Key;
|
||
|
|
declare const index_KeyRound: typeof KeyRound;
|
||
|
|
declare const index_KeySquare: typeof KeySquare;
|
||
|
|
declare const index_Keyboard: typeof Keyboard;
|
||
|
|
declare const index_KeyboardMusic: typeof KeyboardMusic;
|
||
|
|
declare const index_KeyboardOff: typeof KeyboardOff;
|
||
|
|
declare const index_Lamp: typeof Lamp;
|
||
|
|
declare const index_LampCeiling: typeof LampCeiling;
|
||
|
|
declare const index_LampDesk: typeof LampDesk;
|
||
|
|
declare const index_LampFloor: typeof LampFloor;
|
||
|
|
declare const index_LampWallDown: typeof LampWallDown;
|
||
|
|
declare const index_LampWallUp: typeof LampWallUp;
|
||
|
|
declare const index_LandPlot: typeof LandPlot;
|
||
|
|
declare const index_Landmark: typeof Landmark;
|
||
|
|
declare const index_Languages: typeof Languages;
|
||
|
|
declare const index_Laptop: typeof Laptop;
|
||
|
|
declare const index_LaptopMinimal: typeof LaptopMinimal;
|
||
|
|
declare const index_LaptopMinimalCheck: typeof LaptopMinimalCheck;
|
||
|
|
declare const index_Lasso: typeof Lasso;
|
||
|
|
declare const index_LassoSelect: typeof LassoSelect;
|
||
|
|
declare const index_Laugh: typeof Laugh;
|
||
|
|
declare const index_Layers: typeof Layers;
|
||
|
|
declare const index_Layers2: typeof Layers2;
|
||
|
|
declare const index_Layers3: typeof Layers3;
|
||
|
|
declare const index_LayoutDashboard: typeof LayoutDashboard;
|
||
|
|
declare const index_LayoutGrid: typeof LayoutGrid;
|
||
|
|
declare const index_LayoutList: typeof LayoutList;
|
||
|
|
declare const index_LayoutPanelLeft: typeof LayoutPanelLeft;
|
||
|
|
declare const index_LayoutPanelTop: typeof LayoutPanelTop;
|
||
|
|
declare const index_LayoutTemplate: typeof LayoutTemplate;
|
||
|
|
declare const index_Leaf: typeof Leaf;
|
||
|
|
declare const index_LeafyGreen: typeof LeafyGreen;
|
||
|
|
declare const index_Lectern: typeof Lectern;
|
||
|
|
declare const index_LetterText: typeof LetterText;
|
||
|
|
declare const index_Library: typeof Library;
|
||
|
|
declare const index_LibraryBig: typeof LibraryBig;
|
||
|
|
declare const index_LifeBuoy: typeof LifeBuoy;
|
||
|
|
declare const index_Ligature: typeof Ligature;
|
||
|
|
declare const index_Lightbulb: typeof Lightbulb;
|
||
|
|
declare const index_LightbulbOff: typeof LightbulbOff;
|
||
|
|
declare const index_Link: typeof Link;
|
||
|
|
declare const index_Link2: typeof Link2;
|
||
|
|
declare const index_Link2Off: typeof Link2Off;
|
||
|
|
declare const index_Linkedin: typeof Linkedin;
|
||
|
|
declare const index_List: typeof List;
|
||
|
|
declare const index_ListCheck: typeof ListCheck;
|
||
|
|
declare const index_ListChecks: typeof ListChecks;
|
||
|
|
declare const index_ListCollapse: typeof ListCollapse;
|
||
|
|
declare const index_ListEnd: typeof ListEnd;
|
||
|
|
declare const index_ListFilter: typeof ListFilter;
|
||
|
|
declare const index_ListMinus: typeof ListMinus;
|
||
|
|
declare const index_ListMusic: typeof ListMusic;
|
||
|
|
declare const index_ListOrdered: typeof ListOrdered;
|
||
|
|
declare const index_ListPlus: typeof ListPlus;
|
||
|
|
declare const index_ListRestart: typeof ListRestart;
|
||
|
|
declare const index_ListStart: typeof ListStart;
|
||
|
|
declare const index_ListTodo: typeof ListTodo;
|
||
|
|
declare const index_ListTree: typeof ListTree;
|
||
|
|
declare const index_ListVideo: typeof ListVideo;
|
||
|
|
declare const index_ListX: typeof ListX;
|
||
|
|
declare const index_Loader: typeof Loader;
|
||
|
|
declare const index_LoaderCircle: typeof LoaderCircle;
|
||
|
|
declare const index_LoaderPinwheel: typeof LoaderPinwheel;
|
||
|
|
declare const index_Locate: typeof Locate;
|
||
|
|
declare const index_LocateFixed: typeof LocateFixed;
|
||
|
|
declare const index_LocateOff: typeof LocateOff;
|
||
|
|
declare const index_Lock: typeof Lock;
|
||
|
|
declare const index_LockKeyhole: typeof LockKeyhole;
|
||
|
|
declare const index_LockKeyholeOpen: typeof LockKeyholeOpen;
|
||
|
|
declare const index_LockOpen: typeof LockOpen;
|
||
|
|
declare const index_LogIn: typeof LogIn;
|
||
|
|
declare const index_LogOut: typeof LogOut;
|
||
|
|
declare const index_Logs: typeof Logs;
|
||
|
|
declare const index_Lollipop: typeof Lollipop;
|
||
|
|
declare const index_Luggage: typeof Luggage;
|
||
|
|
declare const index_Magnet: typeof Magnet;
|
||
|
|
declare const index_Mail: typeof Mail;
|
||
|
|
declare const index_MailCheck: typeof MailCheck;
|
||
|
|
declare const index_MailMinus: typeof MailMinus;
|
||
|
|
declare const index_MailOpen: typeof MailOpen;
|
||
|
|
declare const index_MailPlus: typeof MailPlus;
|
||
|
|
declare const index_MailQuestion: typeof MailQuestion;
|
||
|
|
declare const index_MailSearch: typeof MailSearch;
|
||
|
|
declare const index_MailWarning: typeof MailWarning;
|
||
|
|
declare const index_MailX: typeof MailX;
|
||
|
|
declare const index_Mailbox: typeof Mailbox;
|
||
|
|
declare const index_Mails: typeof Mails;
|
||
|
|
declare const index_Map: typeof Map;
|
||
|
|
declare const index_MapPin: typeof MapPin;
|
||
|
|
declare const index_MapPinCheck: typeof MapPinCheck;
|
||
|
|
declare const index_MapPinCheckInside: typeof MapPinCheckInside;
|
||
|
|
declare const index_MapPinHouse: typeof MapPinHouse;
|
||
|
|
declare const index_MapPinMinus: typeof MapPinMinus;
|
||
|
|
declare const index_MapPinMinusInside: typeof MapPinMinusInside;
|
||
|
|
declare const index_MapPinOff: typeof MapPinOff;
|
||
|
|
declare const index_MapPinPlus: typeof MapPinPlus;
|
||
|
|
declare const index_MapPinPlusInside: typeof MapPinPlusInside;
|
||
|
|
declare const index_MapPinX: typeof MapPinX;
|
||
|
|
declare const index_MapPinXInside: typeof MapPinXInside;
|
||
|
|
declare const index_MapPinned: typeof MapPinned;
|
||
|
|
declare const index_Martini: typeof Martini;
|
||
|
|
declare const index_Maximize: typeof Maximize;
|
||
|
|
declare const index_Maximize2: typeof Maximize2;
|
||
|
|
declare const index_Medal: typeof Medal;
|
||
|
|
declare const index_Megaphone: typeof Megaphone;
|
||
|
|
declare const index_MegaphoneOff: typeof MegaphoneOff;
|
||
|
|
declare const index_Meh: typeof Meh;
|
||
|
|
declare const index_MemoryStick: typeof MemoryStick;
|
||
|
|
declare const index_Menu: typeof Menu;
|
||
|
|
declare const index_Merge: typeof Merge;
|
||
|
|
declare const index_MessageCircle: typeof MessageCircle;
|
||
|
|
declare const index_MessageCircleCode: typeof MessageCircleCode;
|
||
|
|
declare const index_MessageCircleDashed: typeof MessageCircleDashed;
|
||
|
|
declare const index_MessageCircleHeart: typeof MessageCircleHeart;
|
||
|
|
declare const index_MessageCircleMore: typeof MessageCircleMore;
|
||
|
|
declare const index_MessageCircleOff: typeof MessageCircleOff;
|
||
|
|
declare const index_MessageCirclePlus: typeof MessageCirclePlus;
|
||
|
|
declare const index_MessageCircleQuestion: typeof MessageCircleQuestion;
|
||
|
|
declare const index_MessageCircleReply: typeof MessageCircleReply;
|
||
|
|
declare const index_MessageCircleWarning: typeof MessageCircleWarning;
|
||
|
|
declare const index_MessageCircleX: typeof MessageCircleX;
|
||
|
|
declare const index_MessageSquare: typeof MessageSquare;
|
||
|
|
declare const index_MessageSquareCode: typeof MessageSquareCode;
|
||
|
|
declare const index_MessageSquareDashed: typeof MessageSquareDashed;
|
||
|
|
declare const index_MessageSquareDiff: typeof MessageSquareDiff;
|
||
|
|
declare const index_MessageSquareDot: typeof MessageSquareDot;
|
||
|
|
declare const index_MessageSquareHeart: typeof MessageSquareHeart;
|
||
|
|
declare const index_MessageSquareLock: typeof MessageSquareLock;
|
||
|
|
declare const index_MessageSquareMore: typeof MessageSquareMore;
|
||
|
|
declare const index_MessageSquareOff: typeof MessageSquareOff;
|
||
|
|
declare const index_MessageSquarePlus: typeof MessageSquarePlus;
|
||
|
|
declare const index_MessageSquareQuote: typeof MessageSquareQuote;
|
||
|
|
declare const index_MessageSquareReply: typeof MessageSquareReply;
|
||
|
|
declare const index_MessageSquareShare: typeof MessageSquareShare;
|
||
|
|
declare const index_MessageSquareText: typeof MessageSquareText;
|
||
|
|
declare const index_MessageSquareWarning: typeof MessageSquareWarning;
|
||
|
|
declare const index_MessageSquareX: typeof MessageSquareX;
|
||
|
|
declare const index_MessagesSquare: typeof MessagesSquare;
|
||
|
|
declare const index_Mic: typeof Mic;
|
||
|
|
declare const index_MicOff: typeof MicOff;
|
||
|
|
declare const index_MicVocal: typeof MicVocal;
|
||
|
|
declare const index_Microchip: typeof Microchip;
|
||
|
|
declare const index_Microscope: typeof Microscope;
|
||
|
|
declare const index_Microwave: typeof Microwave;
|
||
|
|
declare const index_Milestone: typeof Milestone;
|
||
|
|
declare const index_Milk: typeof Milk;
|
||
|
|
declare const index_MilkOff: typeof MilkOff;
|
||
|
|
declare const index_Minimize: typeof Minimize;
|
||
|
|
declare const index_Minimize2: typeof Minimize2;
|
||
|
|
declare const index_Minus: typeof Minus;
|
||
|
|
declare const index_Monitor: typeof Monitor;
|
||
|
|
declare const index_MonitorCheck: typeof MonitorCheck;
|
||
|
|
declare const index_MonitorCog: typeof MonitorCog;
|
||
|
|
declare const index_MonitorDot: typeof MonitorDot;
|
||
|
|
declare const index_MonitorDown: typeof MonitorDown;
|
||
|
|
declare const index_MonitorOff: typeof MonitorOff;
|
||
|
|
declare const index_MonitorPause: typeof MonitorPause;
|
||
|
|
declare const index_MonitorPlay: typeof MonitorPlay;
|
||
|
|
declare const index_MonitorSmartphone: typeof MonitorSmartphone;
|
||
|
|
declare const index_MonitorSpeaker: typeof MonitorSpeaker;
|
||
|
|
declare const index_MonitorStop: typeof MonitorStop;
|
||
|
|
declare const index_MonitorUp: typeof MonitorUp;
|
||
|
|
declare const index_MonitorX: typeof MonitorX;
|
||
|
|
declare const index_Moon: typeof Moon;
|
||
|
|
declare const index_MoonStar: typeof MoonStar;
|
||
|
|
declare const index_Mountain: typeof Mountain;
|
||
|
|
declare const index_MountainSnow: typeof MountainSnow;
|
||
|
|
declare const index_Mouse: typeof Mouse;
|
||
|
|
declare const index_MouseOff: typeof MouseOff;
|
||
|
|
declare const index_MousePointer: typeof MousePointer;
|
||
|
|
declare const index_MousePointer2: typeof MousePointer2;
|
||
|
|
declare const index_MousePointerBan: typeof MousePointerBan;
|
||
|
|
declare const index_MousePointerClick: typeof MousePointerClick;
|
||
|
|
declare const index_Move: typeof Move;
|
||
|
|
declare const index_Move3d: typeof Move3d;
|
||
|
|
declare const index_MoveDiagonal: typeof MoveDiagonal;
|
||
|
|
declare const index_MoveDiagonal2: typeof MoveDiagonal2;
|
||
|
|
declare const index_MoveDown: typeof MoveDown;
|
||
|
|
declare const index_MoveDownLeft: typeof MoveDownLeft;
|
||
|
|
declare const index_MoveDownRight: typeof MoveDownRight;
|
||
|
|
declare const index_MoveHorizontal: typeof MoveHorizontal;
|
||
|
|
declare const index_MoveLeft: typeof MoveLeft;
|
||
|
|
declare const index_MoveRight: typeof MoveRight;
|
||
|
|
declare const index_MoveUp: typeof MoveUp;
|
||
|
|
declare const index_MoveUpLeft: typeof MoveUpLeft;
|
||
|
|
declare const index_MoveUpRight: typeof MoveUpRight;
|
||
|
|
declare const index_MoveVertical: typeof MoveVertical;
|
||
|
|
declare const index_Music: typeof Music;
|
||
|
|
declare const index_Music2: typeof Music2;
|
||
|
|
declare const index_Music3: typeof Music3;
|
||
|
|
declare const index_Music4: typeof Music4;
|
||
|
|
declare const index_Navigation: typeof Navigation;
|
||
|
|
declare const index_Navigation2: typeof Navigation2;
|
||
|
|
declare const index_Navigation2Off: typeof Navigation2Off;
|
||
|
|
declare const index_NavigationOff: typeof NavigationOff;
|
||
|
|
declare const index_Network: typeof Network;
|
||
|
|
declare const index_Newspaper: typeof Newspaper;
|
||
|
|
declare const index_Nfc: typeof Nfc;
|
||
|
|
declare const index_Notebook: typeof Notebook;
|
||
|
|
declare const index_NotebookPen: typeof NotebookPen;
|
||
|
|
declare const index_NotebookTabs: typeof NotebookTabs;
|
||
|
|
declare const index_NotebookText: typeof NotebookText;
|
||
|
|
declare const index_NotepadText: typeof NotepadText;
|
||
|
|
declare const index_NotepadTextDashed: typeof NotepadTextDashed;
|
||
|
|
declare const index_Nut: typeof Nut;
|
||
|
|
declare const index_NutOff: typeof NutOff;
|
||
|
|
declare const index_Octagon: typeof Octagon;
|
||
|
|
declare const index_OctagonAlert: typeof OctagonAlert;
|
||
|
|
declare const index_OctagonMinus: typeof OctagonMinus;
|
||
|
|
declare const index_OctagonPause: typeof OctagonPause;
|
||
|
|
declare const index_OctagonX: typeof OctagonX;
|
||
|
|
declare const index_Omega: typeof Omega;
|
||
|
|
declare const index_Option: typeof Option;
|
||
|
|
declare const index_Orbit: typeof Orbit;
|
||
|
|
declare const index_Origami: typeof Origami;
|
||
|
|
declare const index_Package: typeof Package;
|
||
|
|
declare const index_Package2: typeof Package2;
|
||
|
|
declare const index_PackageCheck: typeof PackageCheck;
|
||
|
|
declare const index_PackageMinus: typeof PackageMinus;
|
||
|
|
declare const index_PackageOpen: typeof PackageOpen;
|
||
|
|
declare const index_PackagePlus: typeof PackagePlus;
|
||
|
|
declare const index_PackageSearch: typeof PackageSearch;
|
||
|
|
declare const index_PackageX: typeof PackageX;
|
||
|
|
declare const index_PaintBucket: typeof PaintBucket;
|
||
|
|
declare const index_PaintRoller: typeof PaintRoller;
|
||
|
|
declare const index_Paintbrush: typeof Paintbrush;
|
||
|
|
declare const index_PaintbrushVertical: typeof PaintbrushVertical;
|
||
|
|
declare const index_Palette: typeof Palette;
|
||
|
|
declare const index_PanelBottom: typeof PanelBottom;
|
||
|
|
declare const index_PanelBottomClose: typeof PanelBottomClose;
|
||
|
|
declare const index_PanelBottomDashed: typeof PanelBottomDashed;
|
||
|
|
declare const index_PanelBottomOpen: typeof PanelBottomOpen;
|
||
|
|
declare const index_PanelLeft: typeof PanelLeft;
|
||
|
|
declare const index_PanelLeftClose: typeof PanelLeftClose;
|
||
|
|
declare const index_PanelLeftDashed: typeof PanelLeftDashed;
|
||
|
|
declare const index_PanelLeftOpen: typeof PanelLeftOpen;
|
||
|
|
declare const index_PanelRight: typeof PanelRight;
|
||
|
|
declare const index_PanelRightClose: typeof PanelRightClose;
|
||
|
|
declare const index_PanelRightDashed: typeof PanelRightDashed;
|
||
|
|
declare const index_PanelRightOpen: typeof PanelRightOpen;
|
||
|
|
declare const index_PanelTop: typeof PanelTop;
|
||
|
|
declare const index_PanelTopClose: typeof PanelTopClose;
|
||
|
|
declare const index_PanelTopDashed: typeof PanelTopDashed;
|
||
|
|
declare const index_PanelTopOpen: typeof PanelTopOpen;
|
||
|
|
declare const index_PanelsLeftBottom: typeof PanelsLeftBottom;
|
||
|
|
declare const index_PanelsRightBottom: typeof PanelsRightBottom;
|
||
|
|
declare const index_PanelsTopLeft: typeof PanelsTopLeft;
|
||
|
|
declare const index_Paperclip: typeof Paperclip;
|
||
|
|
declare const index_Parentheses: typeof Parentheses;
|
||
|
|
declare const index_ParkingMeter: typeof ParkingMeter;
|
||
|
|
declare const index_PartyPopper: typeof PartyPopper;
|
||
|
|
declare const index_Pause: typeof Pause;
|
||
|
|
declare const index_PawPrint: typeof PawPrint;
|
||
|
|
declare const index_PcCase: typeof PcCase;
|
||
|
|
declare const index_Pen: typeof Pen;
|
||
|
|
declare const index_PenLine: typeof PenLine;
|
||
|
|
declare const index_PenOff: typeof PenOff;
|
||
|
|
declare const index_PenTool: typeof PenTool;
|
||
|
|
declare const index_Pencil: typeof Pencil;
|
||
|
|
declare const index_PencilLine: typeof PencilLine;
|
||
|
|
declare const index_PencilOff: typeof PencilOff;
|
||
|
|
declare const index_PencilRuler: typeof PencilRuler;
|
||
|
|
declare const index_Pentagon: typeof Pentagon;
|
||
|
|
declare const index_Percent: typeof Percent;
|
||
|
|
declare const index_PersonStanding: typeof PersonStanding;
|
||
|
|
declare const index_PhilippinePeso: typeof PhilippinePeso;
|
||
|
|
declare const index_Phone: typeof Phone;
|
||
|
|
declare const index_PhoneCall: typeof PhoneCall;
|
||
|
|
declare const index_PhoneForwarded: typeof PhoneForwarded;
|
||
|
|
declare const index_PhoneIncoming: typeof PhoneIncoming;
|
||
|
|
declare const index_PhoneMissed: typeof PhoneMissed;
|
||
|
|
declare const index_PhoneOff: typeof PhoneOff;
|
||
|
|
declare const index_PhoneOutgoing: typeof PhoneOutgoing;
|
||
|
|
declare const index_Pi: typeof Pi;
|
||
|
|
declare const index_Piano: typeof Piano;
|
||
|
|
declare const index_Pickaxe: typeof Pickaxe;
|
||
|
|
declare const index_PictureInPicture: typeof PictureInPicture;
|
||
|
|
declare const index_PictureInPicture2: typeof PictureInPicture2;
|
||
|
|
declare const index_PiggyBank: typeof PiggyBank;
|
||
|
|
declare const index_Pilcrow: typeof Pilcrow;
|
||
|
|
declare const index_PilcrowLeft: typeof PilcrowLeft;
|
||
|
|
declare const index_PilcrowRight: typeof PilcrowRight;
|
||
|
|
declare const index_Pill: typeof Pill;
|
||
|
|
declare const index_PillBottle: typeof PillBottle;
|
||
|
|
declare const index_Pin: typeof Pin;
|
||
|
|
declare const index_PinOff: typeof PinOff;
|
||
|
|
declare const index_Pipette: typeof Pipette;
|
||
|
|
declare const index_Pizza: typeof Pizza;
|
||
|
|
declare const index_Plane: typeof Plane;
|
||
|
|
declare const index_PlaneLanding: typeof PlaneLanding;
|
||
|
|
declare const index_PlaneTakeoff: typeof PlaneTakeoff;
|
||
|
|
declare const index_Play: typeof Play;
|
||
|
|
declare const index_Plug: typeof Plug;
|
||
|
|
declare const index_Plug2: typeof Plug2;
|
||
|
|
declare const index_PlugZap: typeof PlugZap;
|
||
|
|
declare const index_Plus: typeof Plus;
|
||
|
|
declare const index_Pocket: typeof Pocket;
|
||
|
|
declare const index_PocketKnife: typeof PocketKnife;
|
||
|
|
declare const index_Podcast: typeof Podcast;
|
||
|
|
declare const index_Pointer: typeof Pointer;
|
||
|
|
declare const index_PointerOff: typeof PointerOff;
|
||
|
|
declare const index_Popcorn: typeof Popcorn;
|
||
|
|
declare const index_Popsicle: typeof Popsicle;
|
||
|
|
declare const index_PoundSterling: typeof PoundSterling;
|
||
|
|
declare const index_Power: typeof Power;
|
||
|
|
declare const index_PowerOff: typeof PowerOff;
|
||
|
|
declare const index_Presentation: typeof Presentation;
|
||
|
|
declare const index_Printer: typeof Printer;
|
||
|
|
declare const index_PrinterCheck: typeof PrinterCheck;
|
||
|
|
declare const index_Projector: typeof Projector;
|
||
|
|
declare const index_Proportions: typeof Proportions;
|
||
|
|
declare const index_Puzzle: typeof Puzzle;
|
||
|
|
declare const index_Pyramid: typeof Pyramid;
|
||
|
|
declare const index_QrCode: typeof QrCode;
|
||
|
|
declare const index_Quote: typeof Quote;
|
||
|
|
declare const index_Rabbit: typeof Rabbit;
|
||
|
|
declare const index_Radar: typeof Radar;
|
||
|
|
declare const index_Radiation: typeof Radiation;
|
||
|
|
declare const index_Radical: typeof Radical;
|
||
|
|
declare const index_Radio: typeof Radio;
|
||
|
|
declare const index_RadioReceiver: typeof RadioReceiver;
|
||
|
|
declare const index_RadioTower: typeof RadioTower;
|
||
|
|
declare const index_Radius: typeof Radius;
|
||
|
|
declare const index_RailSymbol: typeof RailSymbol;
|
||
|
|
declare const index_Rainbow: typeof Rainbow;
|
||
|
|
declare const index_Rat: typeof Rat;
|
||
|
|
declare const index_Ratio: typeof Ratio;
|
||
|
|
declare const index_Receipt: typeof Receipt;
|
||
|
|
declare const index_ReceiptCent: typeof ReceiptCent;
|
||
|
|
declare const index_ReceiptEuro: typeof ReceiptEuro;
|
||
|
|
declare const index_ReceiptIndianRupee: typeof ReceiptIndianRupee;
|
||
|
|
declare const index_ReceiptJapaneseYen: typeof ReceiptJapaneseYen;
|
||
|
|
declare const index_ReceiptPoundSterling: typeof ReceiptPoundSterling;
|
||
|
|
declare const index_ReceiptRussianRuble: typeof ReceiptRussianRuble;
|
||
|
|
declare const index_ReceiptSwissFranc: typeof ReceiptSwissFranc;
|
||
|
|
declare const index_ReceiptText: typeof ReceiptText;
|
||
|
|
declare const index_RectangleEllipsis: typeof RectangleEllipsis;
|
||
|
|
declare const index_RectangleHorizontal: typeof RectangleHorizontal;
|
||
|
|
declare const index_RectangleVertical: typeof RectangleVertical;
|
||
|
|
declare const index_Recycle: typeof Recycle;
|
||
|
|
declare const index_Redo: typeof Redo;
|
||
|
|
declare const index_Redo2: typeof Redo2;
|
||
|
|
declare const index_RedoDot: typeof RedoDot;
|
||
|
|
declare const index_RefreshCcw: typeof RefreshCcw;
|
||
|
|
declare const index_RefreshCcwDot: typeof RefreshCcwDot;
|
||
|
|
declare const index_RefreshCw: typeof RefreshCw;
|
||
|
|
declare const index_RefreshCwOff: typeof RefreshCwOff;
|
||
|
|
declare const index_Refrigerator: typeof Refrigerator;
|
||
|
|
declare const index_Regex: typeof Regex;
|
||
|
|
declare const index_RemoveFormatting: typeof RemoveFormatting;
|
||
|
|
declare const index_Repeat: typeof Repeat;
|
||
|
|
declare const index_Repeat1: typeof Repeat1;
|
||
|
|
declare const index_Repeat2: typeof Repeat2;
|
||
|
|
declare const index_Replace: typeof Replace;
|
||
|
|
declare const index_ReplaceAll: typeof ReplaceAll;
|
||
|
|
declare const index_Reply: typeof Reply;
|
||
|
|
declare const index_ReplyAll: typeof ReplyAll;
|
||
|
|
declare const index_Rewind: typeof Rewind;
|
||
|
|
declare const index_Ribbon: typeof Ribbon;
|
||
|
|
declare const index_Rocket: typeof Rocket;
|
||
|
|
declare const index_RockingChair: typeof RockingChair;
|
||
|
|
declare const index_RollerCoaster: typeof RollerCoaster;
|
||
|
|
declare const index_Rotate3d: typeof Rotate3d;
|
||
|
|
declare const index_RotateCcw: typeof RotateCcw;
|
||
|
|
declare const index_RotateCcwSquare: typeof RotateCcwSquare;
|
||
|
|
declare const index_RotateCw: typeof RotateCw;
|
||
|
|
declare const index_RotateCwSquare: typeof RotateCwSquare;
|
||
|
|
declare const index_Route: typeof Route;
|
||
|
|
declare const index_RouteOff: typeof RouteOff;
|
||
|
|
declare const index_Router: typeof Router;
|
||
|
|
declare const index_Rows2: typeof Rows2;
|
||
|
|
declare const index_Rows3: typeof Rows3;
|
||
|
|
declare const index_Rows4: typeof Rows4;
|
||
|
|
declare const index_Rss: typeof Rss;
|
||
|
|
declare const index_Ruler: typeof Ruler;
|
||
|
|
declare const index_RussianRuble: typeof RussianRuble;
|
||
|
|
declare const index_Sailboat: typeof Sailboat;
|
||
|
|
declare const index_Salad: typeof Salad;
|
||
|
|
declare const index_Sandwich: typeof Sandwich;
|
||
|
|
declare const index_Satellite: typeof Satellite;
|
||
|
|
declare const index_SatelliteDish: typeof SatelliteDish;
|
||
|
|
declare const index_Save: typeof Save;
|
||
|
|
declare const index_SaveAll: typeof SaveAll;
|
||
|
|
declare const index_SaveOff: typeof SaveOff;
|
||
|
|
declare const index_Scale: typeof Scale;
|
||
|
|
declare const index_Scale3d: typeof Scale3d;
|
||
|
|
declare const index_Scaling: typeof Scaling;
|
||
|
|
declare const index_Scan: typeof Scan;
|
||
|
|
declare const index_ScanBarcode: typeof ScanBarcode;
|
||
|
|
declare const index_ScanEye: typeof ScanEye;
|
||
|
|
declare const index_ScanFace: typeof ScanFace;
|
||
|
|
declare const index_ScanLine: typeof ScanLine;
|
||
|
|
declare const index_ScanQrCode: typeof ScanQrCode;
|
||
|
|
declare const index_ScanSearch: typeof ScanSearch;
|
||
|
|
declare const index_ScanText: typeof ScanText;
|
||
|
|
declare const index_School: typeof School;
|
||
|
|
declare const index_Scissors: typeof Scissors;
|
||
|
|
declare const index_ScissorsLineDashed: typeof ScissorsLineDashed;
|
||
|
|
declare const index_ScreenShare: typeof ScreenShare;
|
||
|
|
declare const index_ScreenShareOff: typeof ScreenShareOff;
|
||
|
|
declare const index_Scroll: typeof Scroll;
|
||
|
|
declare const index_ScrollText: typeof ScrollText;
|
||
|
|
declare const index_Search: typeof Search;
|
||
|
|
declare const index_SearchCheck: typeof SearchCheck;
|
||
|
|
declare const index_SearchCode: typeof SearchCode;
|
||
|
|
declare const index_SearchSlash: typeof SearchSlash;
|
||
|
|
declare const index_SearchX: typeof SearchX;
|
||
|
|
declare const index_Section: typeof Section;
|
||
|
|
declare const index_Send: typeof Send;
|
||
|
|
declare const index_SendHorizontal: typeof SendHorizontal;
|
||
|
|
declare const index_SendToBack: typeof SendToBack;
|
||
|
|
declare const index_SeparatorHorizontal: typeof SeparatorHorizontal;
|
||
|
|
declare const index_SeparatorVertical: typeof SeparatorVertical;
|
||
|
|
declare const index_Server: typeof Server;
|
||
|
|
declare const index_ServerCog: typeof ServerCog;
|
||
|
|
declare const index_ServerCrash: typeof ServerCrash;
|
||
|
|
declare const index_ServerOff: typeof ServerOff;
|
||
|
|
declare const index_Settings: typeof Settings;
|
||
|
|
declare const index_Settings2: typeof Settings2;
|
||
|
|
declare const index_Shapes: typeof Shapes;
|
||
|
|
declare const index_Share: typeof Share;
|
||
|
|
declare const index_Share2: typeof Share2;
|
||
|
|
declare const index_Sheet: typeof Sheet;
|
||
|
|
declare const index_Shell: typeof Shell;
|
||
|
|
declare const index_Shield: typeof Shield;
|
||
|
|
declare const index_ShieldAlert: typeof ShieldAlert;
|
||
|
|
declare const index_ShieldBan: typeof ShieldBan;
|
||
|
|
declare const index_ShieldCheck: typeof ShieldCheck;
|
||
|
|
declare const index_ShieldEllipsis: typeof ShieldEllipsis;
|
||
|
|
declare const index_ShieldHalf: typeof ShieldHalf;
|
||
|
|
declare const index_ShieldMinus: typeof ShieldMinus;
|
||
|
|
declare const index_ShieldOff: typeof ShieldOff;
|
||
|
|
declare const index_ShieldPlus: typeof ShieldPlus;
|
||
|
|
declare const index_ShieldQuestion: typeof ShieldQuestion;
|
||
|
|
declare const index_ShieldX: typeof ShieldX;
|
||
|
|
declare const index_Ship: typeof Ship;
|
||
|
|
declare const index_ShipWheel: typeof ShipWheel;
|
||
|
|
declare const index_Shirt: typeof Shirt;
|
||
|
|
declare const index_ShoppingBag: typeof ShoppingBag;
|
||
|
|
declare const index_ShoppingBasket: typeof ShoppingBasket;
|
||
|
|
declare const index_ShoppingCart: typeof ShoppingCart;
|
||
|
|
declare const index_Shovel: typeof Shovel;
|
||
|
|
declare const index_ShowerHead: typeof ShowerHead;
|
||
|
|
declare const index_Shrink: typeof Shrink;
|
||
|
|
declare const index_Shrub: typeof Shrub;
|
||
|
|
declare const index_Shuffle: typeof Shuffle;
|
||
|
|
declare const index_Sigma: typeof Sigma;
|
||
|
|
declare const index_Signal: typeof Signal;
|
||
|
|
declare const index_SignalHigh: typeof SignalHigh;
|
||
|
|
declare const index_SignalLow: typeof SignalLow;
|
||
|
|
declare const index_SignalMedium: typeof SignalMedium;
|
||
|
|
declare const index_SignalZero: typeof SignalZero;
|
||
|
|
declare const index_Signature: typeof Signature;
|
||
|
|
declare const index_Signpost: typeof Signpost;
|
||
|
|
declare const index_SignpostBig: typeof SignpostBig;
|
||
|
|
declare const index_Siren: typeof Siren;
|
||
|
|
declare const index_SkipBack: typeof SkipBack;
|
||
|
|
declare const index_SkipForward: typeof SkipForward;
|
||
|
|
declare const index_Skull: typeof Skull;
|
||
|
|
declare const index_Slack: typeof Slack;
|
||
|
|
declare const index_Slash: typeof Slash;
|
||
|
|
declare const index_Slice: typeof Slice;
|
||
|
|
declare const index_SlidersHorizontal: typeof SlidersHorizontal;
|
||
|
|
declare const index_SlidersVertical: typeof SlidersVertical;
|
||
|
|
declare const index_Smartphone: typeof Smartphone;
|
||
|
|
declare const index_SmartphoneCharging: typeof SmartphoneCharging;
|
||
|
|
declare const index_SmartphoneNfc: typeof SmartphoneNfc;
|
||
|
|
declare const index_Smile: typeof Smile;
|
||
|
|
declare const index_SmilePlus: typeof SmilePlus;
|
||
|
|
declare const index_Snail: typeof Snail;
|
||
|
|
declare const index_Snowflake: typeof Snowflake;
|
||
|
|
declare const index_Sofa: typeof Sofa;
|
||
|
|
declare const index_Soup: typeof Soup;
|
||
|
|
declare const index_Space: typeof Space;
|
||
|
|
declare const index_Spade: typeof Spade;
|
||
|
|
declare const index_Sparkle: typeof Sparkle;
|
||
|
|
declare const index_Sparkles: typeof Sparkles;
|
||
|
|
declare const index_Speaker: typeof Speaker;
|
||
|
|
declare const index_Speech: typeof Speech;
|
||
|
|
declare const index_SpellCheck: typeof SpellCheck;
|
||
|
|
declare const index_SpellCheck2: typeof SpellCheck2;
|
||
|
|
declare const index_Spline: typeof Spline;
|
||
|
|
declare const index_Split: typeof Split;
|
||
|
|
declare const index_SprayCan: typeof SprayCan;
|
||
|
|
declare const index_Sprout: typeof Sprout;
|
||
|
|
declare const index_Square: typeof Square;
|
||
|
|
declare const index_SquareActivity: typeof SquareActivity;
|
||
|
|
declare const index_SquareArrowDown: typeof SquareArrowDown;
|
||
|
|
declare const index_SquareArrowDownLeft: typeof SquareArrowDownLeft;
|
||
|
|
declare const index_SquareArrowDownRight: typeof SquareArrowDownRight;
|
||
|
|
declare const index_SquareArrowLeft: typeof SquareArrowLeft;
|
||
|
|
declare const index_SquareArrowOutDownLeft: typeof SquareArrowOutDownLeft;
|
||
|
|
declare const index_SquareArrowOutDownRight: typeof SquareArrowOutDownRight;
|
||
|
|
declare const index_SquareArrowOutUpLeft: typeof SquareArrowOutUpLeft;
|
||
|
|
declare const index_SquareArrowOutUpRight: typeof SquareArrowOutUpRight;
|
||
|
|
declare const index_SquareArrowRight: typeof SquareArrowRight;
|
||
|
|
declare const index_SquareArrowUp: typeof SquareArrowUp;
|
||
|
|
declare const index_SquareArrowUpLeft: typeof SquareArrowUpLeft;
|
||
|
|
declare const index_SquareArrowUpRight: typeof SquareArrowUpRight;
|
||
|
|
declare const index_SquareAsterisk: typeof SquareAsterisk;
|
||
|
|
declare const index_SquareBottomDashedScissors: typeof SquareBottomDashedScissors;
|
||
|
|
declare const index_SquareChartGantt: typeof SquareChartGantt;
|
||
|
|
declare const index_SquareCheck: typeof SquareCheck;
|
||
|
|
declare const index_SquareCheckBig: typeof SquareCheckBig;
|
||
|
|
declare const index_SquareChevronDown: typeof SquareChevronDown;
|
||
|
|
declare const index_SquareChevronLeft: typeof SquareChevronLeft;
|
||
|
|
declare const index_SquareChevronRight: typeof SquareChevronRight;
|
||
|
|
declare const index_SquareChevronUp: typeof SquareChevronUp;
|
||
|
|
declare const index_SquareCode: typeof SquareCode;
|
||
|
|
declare const index_SquareDashed: typeof SquareDashed;
|
||
|
|
declare const index_SquareDashedBottom: typeof SquareDashedBottom;
|
||
|
|
declare const index_SquareDashedBottomCode: typeof SquareDashedBottomCode;
|
||
|
|
declare const index_SquareDashedKanban: typeof SquareDashedKanban;
|
||
|
|
declare const index_SquareDashedMousePointer: typeof SquareDashedMousePointer;
|
||
|
|
declare const index_SquareDivide: typeof SquareDivide;
|
||
|
|
declare const index_SquareDot: typeof SquareDot;
|
||
|
|
declare const index_SquareEqual: typeof SquareEqual;
|
||
|
|
declare const index_SquareFunction: typeof SquareFunction;
|
||
|
|
declare const index_SquareKanban: typeof SquareKanban;
|
||
|
|
declare const index_SquareLibrary: typeof SquareLibrary;
|
||
|
|
declare const index_SquareM: typeof SquareM;
|
||
|
|
declare const index_SquareMenu: typeof SquareMenu;
|
||
|
|
declare const index_SquareMinus: typeof SquareMinus;
|
||
|
|
declare const index_SquareMousePointer: typeof SquareMousePointer;
|
||
|
|
declare const index_SquareParking: typeof SquareParking;
|
||
|
|
declare const index_SquareParkingOff: typeof SquareParkingOff;
|
||
|
|
declare const index_SquarePen: typeof SquarePen;
|
||
|
|
declare const index_SquarePercent: typeof SquarePercent;
|
||
|
|
declare const index_SquarePi: typeof SquarePi;
|
||
|
|
declare const index_SquarePilcrow: typeof SquarePilcrow;
|
||
|
|
declare const index_SquarePlay: typeof SquarePlay;
|
||
|
|
declare const index_SquarePlus: typeof SquarePlus;
|
||
|
|
declare const index_SquarePower: typeof SquarePower;
|
||
|
|
declare const index_SquareRadical: typeof SquareRadical;
|
||
|
|
declare const index_SquareScissors: typeof SquareScissors;
|
||
|
|
declare const index_SquareSigma: typeof SquareSigma;
|
||
|
|
declare const index_SquareSlash: typeof SquareSlash;
|
||
|
|
declare const index_SquareSplitHorizontal: typeof SquareSplitHorizontal;
|
||
|
|
declare const index_SquareSplitVertical: typeof SquareSplitVertical;
|
||
|
|
declare const index_SquareSquare: typeof SquareSquare;
|
||
|
|
declare const index_SquareStack: typeof SquareStack;
|
||
|
|
declare const index_SquareTerminal: typeof SquareTerminal;
|
||
|
|
declare const index_SquareUser: typeof SquareUser;
|
||
|
|
declare const index_SquareUserRound: typeof SquareUserRound;
|
||
|
|
declare const index_SquareX: typeof SquareX;
|
||
|
|
declare const index_Squircle: typeof Squircle;
|
||
|
|
declare const index_Squirrel: typeof Squirrel;
|
||
|
|
declare const index_Stamp: typeof Stamp;
|
||
|
|
declare const index_Star: typeof Star;
|
||
|
|
declare const index_StarHalf: typeof StarHalf;
|
||
|
|
declare const index_StarOff: typeof StarOff;
|
||
|
|
declare const index_StepBack: typeof StepBack;
|
||
|
|
declare const index_StepForward: typeof StepForward;
|
||
|
|
declare const index_Stethoscope: typeof Stethoscope;
|
||
|
|
declare const index_Sticker: typeof Sticker;
|
||
|
|
declare const index_StickyNote: typeof StickyNote;
|
||
|
|
declare const index_Store: typeof Store;
|
||
|
|
declare const index_StretchHorizontal: typeof StretchHorizontal;
|
||
|
|
declare const index_StretchVertical: typeof StretchVertical;
|
||
|
|
declare const index_Strikethrough: typeof Strikethrough;
|
||
|
|
declare const index_Subscript: typeof Subscript;
|
||
|
|
declare const index_Sun: typeof Sun;
|
||
|
|
declare const index_SunDim: typeof SunDim;
|
||
|
|
declare const index_SunMedium: typeof SunMedium;
|
||
|
|
declare const index_SunMoon: typeof SunMoon;
|
||
|
|
declare const index_SunSnow: typeof SunSnow;
|
||
|
|
declare const index_Sunrise: typeof Sunrise;
|
||
|
|
declare const index_Sunset: typeof Sunset;
|
||
|
|
declare const index_Superscript: typeof Superscript;
|
||
|
|
declare const index_SwatchBook: typeof SwatchBook;
|
||
|
|
declare const index_SwissFranc: typeof SwissFranc;
|
||
|
|
declare const index_SwitchCamera: typeof SwitchCamera;
|
||
|
|
declare const index_Sword: typeof Sword;
|
||
|
|
declare const index_Swords: typeof Swords;
|
||
|
|
declare const index_Syringe: typeof Syringe;
|
||
|
|
declare const index_Table: typeof Table;
|
||
|
|
declare const index_Table2: typeof Table2;
|
||
|
|
declare const index_TableCellsMerge: typeof TableCellsMerge;
|
||
|
|
declare const index_TableCellsSplit: typeof TableCellsSplit;
|
||
|
|
declare const index_TableColumnsSplit: typeof TableColumnsSplit;
|
||
|
|
declare const index_TableOfContents: typeof TableOfContents;
|
||
|
|
declare const index_TableProperties: typeof TableProperties;
|
||
|
|
declare const index_TableRowsSplit: typeof TableRowsSplit;
|
||
|
|
declare const index_Tablet: typeof Tablet;
|
||
|
|
declare const index_TabletSmartphone: typeof TabletSmartphone;
|
||
|
|
declare const index_Tablets: typeof Tablets;
|
||
|
|
declare const index_Tag: typeof Tag;
|
||
|
|
declare const index_Tags: typeof Tags;
|
||
|
|
declare const index_Tally1: typeof Tally1;
|
||
|
|
declare const index_Tally2: typeof Tally2;
|
||
|
|
declare const index_Tally3: typeof Tally3;
|
||
|
|
declare const index_Tally4: typeof Tally4;
|
||
|
|
declare const index_Tally5: typeof Tally5;
|
||
|
|
declare const index_Tangent: typeof Tangent;
|
||
|
|
declare const index_Target: typeof Target;
|
||
|
|
declare const index_Telescope: typeof Telescope;
|
||
|
|
declare const index_Tent: typeof Tent;
|
||
|
|
declare const index_TentTree: typeof TentTree;
|
||
|
|
declare const index_Terminal: typeof Terminal;
|
||
|
|
declare const index_TestTube: typeof TestTube;
|
||
|
|
declare const index_TestTubeDiagonal: typeof TestTubeDiagonal;
|
||
|
|
declare const index_TestTubes: typeof TestTubes;
|
||
|
|
declare const index_Text: typeof Text;
|
||
|
|
declare const index_TextCursor: typeof TextCursor;
|
||
|
|
declare const index_TextCursorInput: typeof TextCursorInput;
|
||
|
|
declare const index_TextQuote: typeof TextQuote;
|
||
|
|
declare const index_TextSearch: typeof TextSearch;
|
||
|
|
declare const index_TextSelect: typeof TextSelect;
|
||
|
|
declare const index_Theater: typeof Theater;
|
||
|
|
declare const index_Thermometer: typeof Thermometer;
|
||
|
|
declare const index_ThermometerSnowflake: typeof ThermometerSnowflake;
|
||
|
|
declare const index_ThermometerSun: typeof ThermometerSun;
|
||
|
|
declare const index_ThumbsDown: typeof ThumbsDown;
|
||
|
|
declare const index_ThumbsUp: typeof ThumbsUp;
|
||
|
|
declare const index_Ticket: typeof Ticket;
|
||
|
|
declare const index_TicketCheck: typeof TicketCheck;
|
||
|
|
declare const index_TicketMinus: typeof TicketMinus;
|
||
|
|
declare const index_TicketPercent: typeof TicketPercent;
|
||
|
|
declare const index_TicketPlus: typeof TicketPlus;
|
||
|
|
declare const index_TicketSlash: typeof TicketSlash;
|
||
|
|
declare const index_TicketX: typeof TicketX;
|
||
|
|
declare const index_Tickets: typeof Tickets;
|
||
|
|
declare const index_TicketsPlane: typeof TicketsPlane;
|
||
|
|
declare const index_Timer: typeof Timer;
|
||
|
|
declare const index_TimerOff: typeof TimerOff;
|
||
|
|
declare const index_TimerReset: typeof TimerReset;
|
||
|
|
declare const index_ToggleLeft: typeof ToggleLeft;
|
||
|
|
declare const index_ToggleRight: typeof ToggleRight;
|
||
|
|
declare const index_Toilet: typeof Toilet;
|
||
|
|
declare const index_Tornado: typeof Tornado;
|
||
|
|
declare const index_Torus: typeof Torus;
|
||
|
|
declare const index_Touchpad: typeof Touchpad;
|
||
|
|
declare const index_TouchpadOff: typeof TouchpadOff;
|
||
|
|
declare const index_TowerControl: typeof TowerControl;
|
||
|
|
declare const index_ToyBrick: typeof ToyBrick;
|
||
|
|
declare const index_Tractor: typeof Tractor;
|
||
|
|
declare const index_TrafficCone: typeof TrafficCone;
|
||
|
|
declare const index_TrainFront: typeof TrainFront;
|
||
|
|
declare const index_TrainFrontTunnel: typeof TrainFrontTunnel;
|
||
|
|
declare const index_TrainTrack: typeof TrainTrack;
|
||
|
|
declare const index_TramFront: typeof TramFront;
|
||
|
|
declare const index_Trash: typeof Trash;
|
||
|
|
declare const index_Trash2: typeof Trash2;
|
||
|
|
declare const index_TreeDeciduous: typeof TreeDeciduous;
|
||
|
|
declare const index_TreePalm: typeof TreePalm;
|
||
|
|
declare const index_TreePine: typeof TreePine;
|
||
|
|
declare const index_Trees: typeof Trees;
|
||
|
|
declare const index_Trello: typeof Trello;
|
||
|
|
declare const index_TrendingDown: typeof TrendingDown;
|
||
|
|
declare const index_TrendingUp: typeof TrendingUp;
|
||
|
|
declare const index_TrendingUpDown: typeof TrendingUpDown;
|
||
|
|
declare const index_Triangle: typeof Triangle;
|
||
|
|
declare const index_TriangleAlert: typeof TriangleAlert;
|
||
|
|
declare const index_TriangleRight: typeof TriangleRight;
|
||
|
|
declare const index_Trophy: typeof Trophy;
|
||
|
|
declare const index_Truck: typeof Truck;
|
||
|
|
declare const index_Turtle: typeof Turtle;
|
||
|
|
declare const index_Tv: typeof Tv;
|
||
|
|
declare const index_TvMinimal: typeof TvMinimal;
|
||
|
|
declare const index_TvMinimalPlay: typeof TvMinimalPlay;
|
||
|
|
declare const index_Twitch: typeof Twitch;
|
||
|
|
declare const index_Twitter: typeof Twitter;
|
||
|
|
declare const index_Type: typeof Type;
|
||
|
|
declare const index_TypeOutline: typeof TypeOutline;
|
||
|
|
declare const index_Umbrella: typeof Umbrella;
|
||
|
|
declare const index_UmbrellaOff: typeof UmbrellaOff;
|
||
|
|
declare const index_Underline: typeof Underline;
|
||
|
|
declare const index_Undo: typeof Undo;
|
||
|
|
declare const index_Undo2: typeof Undo2;
|
||
|
|
declare const index_UndoDot: typeof UndoDot;
|
||
|
|
declare const index_UnfoldHorizontal: typeof UnfoldHorizontal;
|
||
|
|
declare const index_UnfoldVertical: typeof UnfoldVertical;
|
||
|
|
declare const index_Ungroup: typeof Ungroup;
|
||
|
|
declare const index_University: typeof University;
|
||
|
|
declare const index_Unlink: typeof Unlink;
|
||
|
|
declare const index_Unlink2: typeof Unlink2;
|
||
|
|
declare const index_Unplug: typeof Unplug;
|
||
|
|
declare const index_Upload: typeof Upload;
|
||
|
|
declare const index_Usb: typeof Usb;
|
||
|
|
declare const index_User: typeof User;
|
||
|
|
declare const index_UserCheck: typeof UserCheck;
|
||
|
|
declare const index_UserCog: typeof UserCog;
|
||
|
|
declare const index_UserMinus: typeof UserMinus;
|
||
|
|
declare const index_UserPen: typeof UserPen;
|
||
|
|
declare const index_UserPlus: typeof UserPlus;
|
||
|
|
declare const index_UserRound: typeof UserRound;
|
||
|
|
declare const index_UserRoundCheck: typeof UserRoundCheck;
|
||
|
|
declare const index_UserRoundCog: typeof UserRoundCog;
|
||
|
|
declare const index_UserRoundMinus: typeof UserRoundMinus;
|
||
|
|
declare const index_UserRoundPen: typeof UserRoundPen;
|
||
|
|
declare const index_UserRoundPlus: typeof UserRoundPlus;
|
||
|
|
declare const index_UserRoundSearch: typeof UserRoundSearch;
|
||
|
|
declare const index_UserRoundX: typeof UserRoundX;
|
||
|
|
declare const index_UserSearch: typeof UserSearch;
|
||
|
|
declare const index_UserX: typeof UserX;
|
||
|
|
declare const index_Users: typeof Users;
|
||
|
|
declare const index_UsersRound: typeof UsersRound;
|
||
|
|
declare const index_Utensils: typeof Utensils;
|
||
|
|
declare const index_UtensilsCrossed: typeof UtensilsCrossed;
|
||
|
|
declare const index_UtilityPole: typeof UtilityPole;
|
||
|
|
declare const index_Variable: typeof Variable;
|
||
|
|
declare const index_Vault: typeof Vault;
|
||
|
|
declare const index_Vegan: typeof Vegan;
|
||
|
|
declare const index_VenetianMask: typeof VenetianMask;
|
||
|
|
declare const index_Vibrate: typeof Vibrate;
|
||
|
|
declare const index_VibrateOff: typeof VibrateOff;
|
||
|
|
declare const index_Video: typeof Video;
|
||
|
|
declare const index_VideoOff: typeof VideoOff;
|
||
|
|
declare const index_Videotape: typeof Videotape;
|
||
|
|
declare const index_View: typeof View;
|
||
|
|
declare const index_Voicemail: typeof Voicemail;
|
||
|
|
declare const index_Volleyball: typeof Volleyball;
|
||
|
|
declare const index_Volume: typeof Volume;
|
||
|
|
declare const index_Volume1: typeof Volume1;
|
||
|
|
declare const index_Volume2: typeof Volume2;
|
||
|
|
declare const index_VolumeOff: typeof VolumeOff;
|
||
|
|
declare const index_VolumeX: typeof VolumeX;
|
||
|
|
declare const index_Vote: typeof Vote;
|
||
|
|
declare const index_Wallet: typeof Wallet;
|
||
|
|
declare const index_WalletCards: typeof WalletCards;
|
||
|
|
declare const index_WalletMinimal: typeof WalletMinimal;
|
||
|
|
declare const index_Wallpaper: typeof Wallpaper;
|
||
|
|
declare const index_Wand: typeof Wand;
|
||
|
|
declare const index_WandSparkles: typeof WandSparkles;
|
||
|
|
declare const index_Warehouse: typeof Warehouse;
|
||
|
|
declare const index_WashingMachine: typeof WashingMachine;
|
||
|
|
declare const index_Watch: typeof Watch;
|
||
|
|
declare const index_Waves: typeof Waves;
|
||
|
|
declare const index_Waypoints: typeof Waypoints;
|
||
|
|
declare const index_Webcam: typeof Webcam;
|
||
|
|
declare const index_Webhook: typeof Webhook;
|
||
|
|
declare const index_WebhookOff: typeof WebhookOff;
|
||
|
|
declare const index_Weight: typeof Weight;
|
||
|
|
declare const index_Wheat: typeof Wheat;
|
||
|
|
declare const index_WheatOff: typeof WheatOff;
|
||
|
|
declare const index_WholeWord: typeof WholeWord;
|
||
|
|
declare const index_Wifi: typeof Wifi;
|
||
|
|
declare const index_WifiHigh: typeof WifiHigh;
|
||
|
|
declare const index_WifiLow: typeof WifiLow;
|
||
|
|
declare const index_WifiOff: typeof WifiOff;
|
||
|
|
declare const index_WifiZero: typeof WifiZero;
|
||
|
|
declare const index_Wind: typeof Wind;
|
||
|
|
declare const index_WindArrowDown: typeof WindArrowDown;
|
||
|
|
declare const index_Wine: typeof Wine;
|
||
|
|
declare const index_WineOff: typeof WineOff;
|
||
|
|
declare const index_Workflow: typeof Workflow;
|
||
|
|
declare const index_Worm: typeof Worm;
|
||
|
|
declare const index_WrapText: typeof WrapText;
|
||
|
|
declare const index_Wrench: typeof Wrench;
|
||
|
|
declare const index_X: typeof X;
|
||
|
|
declare const index_Youtube: typeof Youtube;
|
||
|
|
declare const index_Zap: typeof Zap;
|
||
|
|
declare const index_ZapOff: typeof ZapOff;
|
||
|
|
declare const index_ZoomIn: typeof ZoomIn;
|
||
|
|
declare const index_ZoomOut: typeof ZoomOut;
|
||
|
|
declare namespace index {
|
||
|
|
export { index_AArrowDown as AArrowDown, index_AArrowUp as AArrowUp, index_ALargeSmall as ALargeSmall, index_Accessibility as Accessibility, index_Activity as Activity, index_AirVent as AirVent, index_Airplay as Airplay, index_AlarmClock as AlarmClock, index_AlarmClockCheck as AlarmClockCheck, index_AlarmClockMinus as AlarmClockMinus, index_AlarmClockOff as AlarmClockOff, index_AlarmClockPlus as AlarmClockPlus, index_AlarmSmoke as AlarmSmoke, index_Album as Album, index_AlignCenter as AlignCenter, index_AlignCenterHorizontal as AlignCenterHorizontal, index_AlignCenterVertical as AlignCenterVertical, index_AlignEndHorizontal as AlignEndHorizontal, index_AlignEndVertical as AlignEndVertical, index_AlignHorizontalDistributeCenter as AlignHorizontalDistributeCenter, index_AlignHorizontalDistributeEnd as AlignHorizontalDistributeEnd, index_AlignHorizontalDistributeStart as AlignHorizontalDistributeStart, index_AlignHorizontalJustifyCenter as AlignHorizontalJustifyCenter, index_AlignHorizontalJustifyEnd as AlignHorizontalJustifyEnd, index_AlignHorizontalJustifyStart as AlignHorizontalJustifyStart, index_AlignHorizontalSpaceAround as AlignHorizontalSpaceAround, index_AlignHorizontalSpaceBetween as AlignHorizontalSpaceBetween, index_AlignJustify as AlignJustify, index_AlignLeft as AlignLeft, index_AlignRight as AlignRight, index_AlignStartHorizontal as AlignStartHorizontal, index_AlignStartVertical as AlignStartVertical, index_AlignVerticalDistributeCenter as AlignVerticalDistributeCenter, index_AlignVerticalDistributeEnd as AlignVerticalDistributeEnd, index_AlignVerticalDistributeStart as AlignVerticalDistributeStart, index_AlignVerticalJustifyCenter as AlignVerticalJustifyCenter, index_AlignVerticalJustifyEnd as AlignVerticalJustifyEnd, index_AlignVerticalJustifyStart as AlignVerticalJustifyStart, index_AlignVerticalSpaceAround as AlignVerticalSpaceAround, index_AlignVerticalSpaceBetween as AlignVerticalSpaceBetween, index_Ambulance as Ambulance, index_Ampersand as Ampersand, index_Ampersands as Ampersands, index_Amphora as Amphora, index_Anchor as Anchor, index_Angry as Angry, index_Annoyed as Annoyed, index_Antenna as Antenna, index_Anvil as Anvil, index_Aperture as Aperture, index_AppWindow as AppWindow, index_AppWindowMac as AppWindowMac, index_Apple as Apple, index_Archive as Archive, index_ArchiveRestore as ArchiveRestore, index_ArchiveX as ArchiveX, index_Armchair as Armchair, index_ArrowBigDown as ArrowBigDown, index_ArrowBigDownDash as ArrowBigDownDash, index_ArrowBigLeft as ArrowBigLeft, index_ArrowBigLeftDash as ArrowBigLeftDash, index_ArrowBigRight as ArrowBigRight, index_ArrowBigRightDash as ArrowBigRightDash, index_ArrowBigUp as ArrowBigUp, index_ArrowBigUpDash as ArrowBigUpDash, index_ArrowDown as ArrowDown, index_ArrowDown01 as ArrowDown01, index_ArrowDown10 as ArrowDown10, index_ArrowDownAZ as ArrowDownAZ, index_ArrowDownFromLine as ArrowDownFromLine, index_ArrowDownLeft as ArrowDownLeft, index_ArrowDownNarrowWide as ArrowDownNarrowWide, index_ArrowDownRight as ArrowDownRight, index_ArrowDownToDot as ArrowDownToDot, index_ArrowDownToLine as ArrowDownToLine, index_ArrowDownUp as ArrowDownUp, index_ArrowDownWideNarrow as ArrowDownWideNarrow, index_ArrowDownZA as ArrowDownZA, index_ArrowLeft as ArrowLeft, index_ArrowLeftFromLine as ArrowLeftFromLine, index_ArrowLeftRight as ArrowLeftRight, index_ArrowLeftToLine as ArrowLeftToLine, index_ArrowRight as ArrowRight, index_ArrowRightFromLine as ArrowRightFromLine, index_ArrowRightLeft as ArrowRightLeft, index_ArrowRightToLine as ArrowRightToLine, index_ArrowUp as ArrowUp, index_ArrowUp01 as ArrowUp01, index_ArrowUp10 as ArrowUp10, index_ArrowUpAZ as ArrowUpAZ, index_ArrowUpDown as ArrowUpDown, index_ArrowUpFromDot as ArrowUpFromDot, index_ArrowUpFromLine as ArrowUpFromLine, index_ArrowUpLeft as ArrowUpLeft, index_ArrowUpNarrowWide as ArrowUpNarrowWide, index_ArrowUpRight as ArrowUpRight, index_ArrowUpToLine as ArrowUpToLine, index_ArrowUpWideNarrow as ArrowUpWideNarrow, index_ArrowUpZA as ArrowUpZA, index_ArrowsUpFromLine as ArrowsUpFromLine, index_Asterisk as Aste
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Create a Lucide icon component
|
||
|
|
* @param {string} iconName
|
||
|
|
* @param {array} iconNode
|
||
|
|
* @returns {ForwardRefExoticComponent} LucideIcon
|
||
|
|
*/
|
||
|
|
declare const createLucideIcon: (iconName: string, iconNode: IconNode) => react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
interface IconComponentProps extends LucideProps {
|
||
|
|
iconNode: IconNode;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Lucide icon component
|
||
|
|
*
|
||
|
|
* @component Icon
|
||
|
|
* @param {object} props
|
||
|
|
* @param {string} props.color - The color of the icon
|
||
|
|
* @param {number} props.size - The size of the icon
|
||
|
|
* @param {number} props.strokeWidth - The stroke width of the icon
|
||
|
|
* @param {boolean} props.absoluteStrokeWidth - Whether to use absolute stroke width
|
||
|
|
* @param {string} props.className - The class name of the icon
|
||
|
|
* @param {IconNode} props.children - The children of the icon
|
||
|
|
* @param {IconNode} props.iconNode - The icon node of the icon
|
||
|
|
*
|
||
|
|
* @returns {ForwardRefExoticComponent} LucideIcon
|
||
|
|
*/
|
||
|
|
declare const Icon: react.ForwardRefExoticComponent<Omit<IconComponentProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
||
|
|
|
||
|
|
export { AArrowDown, AArrowDown as AArrowDownIcon, AArrowUp, AArrowUp as AArrowUpIcon, ALargeSmall, ALargeSmall as ALargeSmallIcon, Accessibility, Accessibility as AccessibilityIcon, Activity, Activity as ActivityIcon, SquareActivity as ActivitySquare, SquareActivity as ActivitySquareIcon, AirVent, AirVent as AirVentIcon, Airplay, Airplay as AirplayIcon, AlarmClockCheck as AlarmCheck, AlarmClockCheck as AlarmCheckIcon, AlarmClock, AlarmClockCheck, AlarmClockCheck as AlarmClockCheckIcon, AlarmClock as AlarmClockIcon, AlarmClockMinus, AlarmClockMinus as AlarmClockMinusIcon, AlarmClockOff, AlarmClockOff as AlarmClockOffIcon, AlarmClockPlus, AlarmClockPlus as AlarmClockPlusIcon, AlarmClockMinus as AlarmMinus, AlarmClockMinus as AlarmMinusIcon, AlarmClockPlus as AlarmPlus, AlarmClockPlus as AlarmPlusIcon, AlarmSmoke, AlarmSmoke as AlarmSmokeIcon, Album, Album as AlbumIcon, CircleAlert as AlertCircle, CircleAlert as AlertCircleIcon, OctagonAlert as AlertOctagon, OctagonAlert as AlertOctagonIcon, TriangleAlert as AlertTriangle, TriangleAlert as AlertTriangleIcon, AlignCenter, AlignCenterHorizontal, AlignCenterHorizontal as AlignCenterHorizontalIcon, AlignCenter as AlignCenterIcon, AlignCenterVertical, AlignCenterVertical as AlignCenterVerticalIcon, AlignEndHorizontal, AlignEndHorizontal as AlignEndHorizontalIcon, AlignEndVertical, AlignEndVertical as AlignEndVerticalIcon, AlignHorizontalDistributeCenter, AlignHorizontalDistributeCenter as AlignHorizontalDistributeCenterIcon, AlignHorizontalDistributeEnd, AlignHorizontalDistributeEnd as AlignHorizontalDistributeEndIcon, AlignHorizontalDistributeStart, AlignHorizontalDistributeStart as AlignHorizontalDistributeStartIcon, AlignHorizontalJustifyCenter, AlignHorizontalJustifyCenter as AlignHorizontalJustifyCenterIcon, AlignHorizontalJustifyEnd, AlignHorizontalJustifyEnd as AlignHorizontalJustifyEndIcon, AlignHorizontalJustifyStart, AlignHorizontalJustifyStart as AlignHorizontalJustifyStartIcon, AlignHorizontalSpaceAround, AlignHorizontalSpaceAround as AlignHorizontalSpaceAroundIcon, AlignHorizontalSpaceBetween, AlignHorizontalSpaceBetween as AlignHorizontalSpaceBetweenIcon, AlignJustify, AlignJustify as AlignJustifyIcon, AlignLeft, AlignLeft as AlignLeftIcon, AlignRight, AlignRight as AlignRightIcon, AlignStartHorizontal, AlignStartHorizontal as AlignStartHorizontalIcon, AlignStartVertical, AlignStartVertical as AlignStartVerticalIcon, AlignVerticalDistributeCenter, AlignVerticalDistributeCenter as AlignVerticalDistributeCenterIcon, AlignVerticalDistributeEnd, AlignVerticalDistributeEnd as AlignVerticalDistributeEndIcon, AlignVerticalDistributeStart, AlignVerticalDistributeStart as AlignVerticalDistributeStartIcon, AlignVerticalJustifyCenter, AlignVerticalJustifyCenter as AlignVerticalJustifyCenterIcon, AlignVerticalJustifyEnd, AlignVerticalJustifyEnd as AlignVerticalJustifyEndIcon, AlignVerticalJustifyStart, AlignVerticalJustifyStart as AlignVerticalJustifyStartIcon, AlignVerticalSpaceAround, AlignVerticalSpaceAround as AlignVerticalSpaceAroundIcon, AlignVerticalSpaceBetween, AlignVerticalSpaceBetween as AlignVerticalSpaceBetweenIcon, Ambulance, Ambulance as AmbulanceIcon, Ampersand, Ampersand as AmpersandIcon, Ampersands, Ampersands as AmpersandsIcon, Amphora, Amphora as AmphoraIcon, Anchor, Anchor as AnchorIcon, Angry, Angry as AngryIcon, Annoyed, Annoyed as AnnoyedIcon, Antenna, Antenna as AntennaIcon, Anvil, Anvil as AnvilIcon, Aperture, Aperture as ApertureIcon, AppWindow, AppWindow as AppWindowIcon, AppWindowMac, AppWindowMac as AppWindowMacIcon, Apple, Apple as AppleIcon, Archive, Archive as ArchiveIcon, ArchiveRestore, ArchiveRestore as ArchiveRestoreIcon, ArchiveX, ArchiveX as ArchiveXIcon, ChartArea as AreaChart, ChartArea as AreaChartIcon, Armchair, Armchair as ArmchairIcon, ArrowBigDown, ArrowBigDownDash, ArrowBigDownDash as ArrowBigDownDashIcon, ArrowBigDown as ArrowBigDownIcon, ArrowBigLeft, ArrowBigLeftDash, ArrowBigLeftDash as ArrowBigLeftDashIcon, ArrowBigLeft as ArrowBigLeftIcon, ArrowBigRight, ArrowBigRightDash, ArrowBigRightDash as ArrowBigRightDashIcon, ArrowB
|