29993 lines
2.0 MiB
29993 lines
2.0 MiB
import * as react from 'react';
|
|
import { ForwardRefExoticComponent, RefAttributes, SVGProps } from 'react';
|
|
|
|
/**
|
|
* A reduced version of `SVGElementType` from @types/react. This type was added
|
|
* with the release of React 19, and is included here in order to support usage
|
|
* with older versions.
|
|
*/
|
|
type SVGElementType = 'circle' | 'ellipse' | 'g' | 'line' | 'path' | 'polygon' | 'polyline' | 'rect';
|
|
type IconNode = [elementName: SVGElementType, 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>>;
|
|
|
|
declare const __iconNode$os: IconNode;
|
|
/**
|
|
* @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 namespace __icons_zoom_out {
|
|
export { __iconNode$os as __iconNode, ZoomOut as default };
|
|
}
|
|
|
|
declare const __iconNode$or: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_zoom_in {
|
|
export { __iconNode$or as __iconNode, ZoomIn as default };
|
|
}
|
|
|
|
declare const __iconNode$oq: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_zap {
|
|
export { __iconNode$oq as __iconNode, Zap as default };
|
|
}
|
|
|
|
declare const __iconNode$op: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_zap_off {
|
|
export { __iconNode$op as __iconNode, ZapOff as default };
|
|
}
|
|
|
|
declare const __iconNode$oo: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_youtube {
|
|
export { __iconNode$oo as __iconNode, Youtube as default };
|
|
}
|
|
|
|
declare const __iconNode$on: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_x {
|
|
export { __iconNode$on as __iconNode, X as default };
|
|
}
|
|
|
|
declare const __iconNode$om: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wrench {
|
|
export { __iconNode$om as __iconNode, Wrench as default };
|
|
}
|
|
|
|
declare const __iconNode$ol: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wrap_text {
|
|
export { __iconNode$ol as __iconNode, WrapText as default };
|
|
}
|
|
|
|
declare const __iconNode$ok: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_worm {
|
|
export { __iconNode$ok as __iconNode, Worm as default };
|
|
}
|
|
|
|
declare const __iconNode$oj: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_workflow {
|
|
export { __iconNode$oj as __iconNode, Workflow as default };
|
|
}
|
|
|
|
declare const __iconNode$oi: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wine {
|
|
export { __iconNode$oi as __iconNode, Wine as default };
|
|
}
|
|
|
|
declare const __iconNode$oh: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wine_off {
|
|
export { __iconNode$oh as __iconNode, WineOff as default };
|
|
}
|
|
|
|
declare const __iconNode$og: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wind {
|
|
export { __iconNode$og as __iconNode, Wind as default };
|
|
}
|
|
|
|
declare const __iconNode$of: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wind_arrow_down {
|
|
export { __iconNode$of as __iconNode, WindArrowDown as default };
|
|
}
|
|
|
|
declare const __iconNode$oe: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wifi {
|
|
export { __iconNode$oe as __iconNode, Wifi as default };
|
|
}
|
|
|
|
declare const __iconNode$od: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wifi_zero {
|
|
export { __iconNode$od as __iconNode, WifiZero as default };
|
|
}
|
|
|
|
declare const __iconNode$oc: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wifi_off {
|
|
export { __iconNode$oc as __iconNode, WifiOff as default };
|
|
}
|
|
|
|
declare const __iconNode$ob: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wifi_low {
|
|
export { __iconNode$ob as __iconNode, WifiLow as default };
|
|
}
|
|
|
|
declare const __iconNode$oa: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wifi_high {
|
|
export { __iconNode$oa as __iconNode, WifiHigh as default };
|
|
}
|
|
|
|
declare const __iconNode$o9: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_whole_word {
|
|
export { __iconNode$o9 as __iconNode, WholeWord as default };
|
|
}
|
|
|
|
declare const __iconNode$o8: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wheat {
|
|
export { __iconNode$o8 as __iconNode, Wheat as default };
|
|
}
|
|
|
|
declare const __iconNode$o7: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wheat_off {
|
|
export { __iconNode$o7 as __iconNode, WheatOff as default };
|
|
}
|
|
|
|
declare const __iconNode$o6: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_weight {
|
|
export { __iconNode$o6 as __iconNode, Weight as default };
|
|
}
|
|
|
|
declare const __iconNode$o5: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_webhook {
|
|
export { __iconNode$o5 as __iconNode, Webhook as default };
|
|
}
|
|
|
|
declare const __iconNode$o4: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_webhook_off {
|
|
export { __iconNode$o4 as __iconNode, WebhookOff as default };
|
|
}
|
|
|
|
declare const __iconNode$o3: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_webcam {
|
|
export { __iconNode$o3 as __iconNode, Webcam as default };
|
|
}
|
|
|
|
declare const __iconNode$o2: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_waypoints {
|
|
export { __iconNode$o2 as __iconNode, Waypoints as default };
|
|
}
|
|
|
|
declare const __iconNode$o1: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_waves {
|
|
export { __iconNode$o1 as __iconNode, Waves as default };
|
|
}
|
|
|
|
declare const __iconNode$o0: IconNode;
|
|
/**
|
|
* @component @name WavesLadder
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/waves-ladder
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
|
*
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
* @returns {JSX.Element} JSX Element
|
|
*
|
|
*/
|
|
declare const WavesLadder: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_waves_ladder {
|
|
export { __iconNode$o0 as __iconNode, WavesLadder as default };
|
|
}
|
|
|
|
declare const __iconNode$n$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_watch {
|
|
export { __iconNode$n$ as __iconNode, Watch as default };
|
|
}
|
|
|
|
declare const __iconNode$n_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_washing_machine {
|
|
export { __iconNode$n_ as __iconNode, WashingMachine as default };
|
|
}
|
|
|
|
declare const __iconNode$nZ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_warehouse {
|
|
export { __iconNode$nZ as __iconNode, Warehouse as default };
|
|
}
|
|
|
|
declare const __iconNode$nY: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wand {
|
|
export { __iconNode$nY as __iconNode, Wand as default };
|
|
}
|
|
|
|
declare const __iconNode$nX: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wand_sparkles {
|
|
export { __iconNode$nX as __iconNode, WandSparkles as default };
|
|
}
|
|
|
|
declare const __iconNode$nW: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wallpaper {
|
|
export { __iconNode$nW as __iconNode, Wallpaper as default };
|
|
}
|
|
|
|
declare const __iconNode$nV: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wallet {
|
|
export { __iconNode$nV as __iconNode, Wallet as default };
|
|
}
|
|
|
|
declare const __iconNode$nU: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wallet_minimal {
|
|
export { __iconNode$nU as __iconNode, WalletMinimal as default };
|
|
}
|
|
|
|
declare const __iconNode$nT: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_wallet_cards {
|
|
export { __iconNode$nT as __iconNode, WalletCards as default };
|
|
}
|
|
|
|
declare const __iconNode$nS: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_vote {
|
|
export { __iconNode$nS as __iconNode, Vote as default };
|
|
}
|
|
|
|
declare const __iconNode$nR: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_volume {
|
|
export { __iconNode$nR as __iconNode, Volume as default };
|
|
}
|
|
|
|
declare const __iconNode$nQ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_volume_x {
|
|
export { __iconNode$nQ as __iconNode, VolumeX as default };
|
|
}
|
|
|
|
declare const __iconNode$nP: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_volume_off {
|
|
export { __iconNode$nP as __iconNode, VolumeOff as default };
|
|
}
|
|
|
|
declare const __iconNode$nO: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_volume_2 {
|
|
export { __iconNode$nO as __iconNode, Volume2 as default };
|
|
}
|
|
|
|
declare const __iconNode$nN: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_volume_1 {
|
|
export { __iconNode$nN as __iconNode, Volume1 as default };
|
|
}
|
|
|
|
declare const __iconNode$nM: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_volleyball {
|
|
export { __iconNode$nM as __iconNode, Volleyball as default };
|
|
}
|
|
|
|
declare const __iconNode$nL: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_voicemail {
|
|
export { __iconNode$nL as __iconNode, Voicemail as default };
|
|
}
|
|
|
|
declare const __iconNode$nK: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_view {
|
|
export { __iconNode$nK as __iconNode, View as default };
|
|
}
|
|
|
|
declare const __iconNode$nJ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_videotape {
|
|
export { __iconNode$nJ as __iconNode, Videotape as default };
|
|
}
|
|
|
|
declare const __iconNode$nI: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_video {
|
|
export { __iconNode$nI as __iconNode, Video as default };
|
|
}
|
|
|
|
declare const __iconNode$nH: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_video_off {
|
|
export { __iconNode$nH as __iconNode, VideoOff as default };
|
|
}
|
|
|
|
declare const __iconNode$nG: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_vibrate {
|
|
export { __iconNode$nG as __iconNode, Vibrate as default };
|
|
}
|
|
|
|
declare const __iconNode$nF: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_vibrate_off {
|
|
export { __iconNode$nF as __iconNode, VibrateOff as default };
|
|
}
|
|
|
|
declare const __iconNode$nE: IconNode;
|
|
/**
|
|
* @component @name Venus
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/venus
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
|
*
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
* @returns {JSX.Element} JSX Element
|
|
*
|
|
*/
|
|
declare const Venus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_venus {
|
|
export { __iconNode$nE as __iconNode, Venus as default };
|
|
}
|
|
|
|
declare const __iconNode$nD: IconNode;
|
|
/**
|
|
* @component @name VenusAndMars
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/venus-and-mars
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
|
*
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
* @returns {JSX.Element} JSX Element
|
|
*
|
|
*/
|
|
declare const VenusAndMars: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_venus_and_mars {
|
|
export { __iconNode$nD as __iconNode, VenusAndMars as default };
|
|
}
|
|
|
|
declare const __iconNode$nC: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_venetian_mask {
|
|
export { __iconNode$nC as __iconNode, VenetianMask as default };
|
|
}
|
|
|
|
declare const __iconNode$nB: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_vegan {
|
|
export { __iconNode$nB as __iconNode, Vegan as default };
|
|
}
|
|
|
|
declare const __iconNode$nA: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_vault {
|
|
export { __iconNode$nA as __iconNode, Vault as default };
|
|
}
|
|
|
|
declare const __iconNode$nz: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_variable {
|
|
export { __iconNode$nz as __iconNode, Variable as default };
|
|
}
|
|
|
|
declare const __iconNode$ny: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_utility_pole {
|
|
export { __iconNode$ny as __iconNode, UtilityPole as default };
|
|
}
|
|
|
|
declare const __iconNode$nx: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_utensils {
|
|
export { __iconNode$nx as __iconNode, Utensils as default };
|
|
}
|
|
|
|
declare const __iconNode$nw: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_utensils_crossed {
|
|
export { __iconNode$nw as __iconNode, UtensilsCrossed as default };
|
|
}
|
|
|
|
declare const __iconNode$nv: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_users {
|
|
export { __iconNode$nv as __iconNode, Users as default };
|
|
}
|
|
|
|
declare const __iconNode$nu: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_users_round {
|
|
export { __iconNode$nu as __iconNode, UsersRound as default };
|
|
}
|
|
|
|
declare const __iconNode$nt: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_user {
|
|
export { __iconNode$nt as __iconNode, User as default };
|
|
}
|
|
|
|
declare const __iconNode$ns: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_user_x {
|
|
export { __iconNode$ns as __iconNode, UserX as default };
|
|
}
|
|
|
|
declare const __iconNode$nr: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_user_search {
|
|
export { __iconNode$nr as __iconNode, UserSearch as default };
|
|
}
|
|
|
|
declare const __iconNode$nq: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_user_round {
|
|
export { __iconNode$nq as __iconNode, UserRound as default };
|
|
}
|
|
|
|
declare const __iconNode$np: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_user_round_x {
|
|
export { __iconNode$np as __iconNode, UserRoundX as default };
|
|
}
|
|
|
|
declare const __iconNode$no: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_user_round_search {
|
|
export { __iconNode$no as __iconNode, UserRoundSearch as default };
|
|
}
|
|
|
|
declare const __iconNode$nn: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_user_round_plus {
|
|
export { __iconNode$nn as __iconNode, UserRoundPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$nm: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_user_round_pen {
|
|
export { __iconNode$nm as __iconNode, UserRoundPen as default };
|
|
}
|
|
|
|
declare const __iconNode$nl: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_user_round_minus {
|
|
export { __iconNode$nl as __iconNode, UserRoundMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$nk: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_user_round_cog {
|
|
export { __iconNode$nk as __iconNode, UserRoundCog as default };
|
|
}
|
|
|
|
declare const __iconNode$nj: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_user_round_check {
|
|
export { __iconNode$nj as __iconNode, UserRoundCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$ni: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_user_plus {
|
|
export { __iconNode$ni as __iconNode, UserPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$nh: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_user_pen {
|
|
export { __iconNode$nh as __iconNode, UserPen as default };
|
|
}
|
|
|
|
declare const __iconNode$ng: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_user_minus {
|
|
export { __iconNode$ng as __iconNode, UserMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$nf: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_user_cog {
|
|
export { __iconNode$nf as __iconNode, UserCog as default };
|
|
}
|
|
|
|
declare const __iconNode$ne: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_user_check {
|
|
export { __iconNode$ne as __iconNode, UserCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$nd: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_usb {
|
|
export { __iconNode$nd as __iconNode, Usb as default };
|
|
}
|
|
|
|
declare const __iconNode$nc: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_upload {
|
|
export { __iconNode$nc as __iconNode, Upload as default };
|
|
}
|
|
|
|
declare const __iconNode$nb: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_unplug {
|
|
export { __iconNode$nb as __iconNode, Unplug as default };
|
|
}
|
|
|
|
declare const __iconNode$na: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_unlink {
|
|
export { __iconNode$na as __iconNode, Unlink as default };
|
|
}
|
|
|
|
declare const __iconNode$n9: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_unlink_2 {
|
|
export { __iconNode$n9 as __iconNode, Unlink2 as default };
|
|
}
|
|
|
|
declare const __iconNode$n8: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_university {
|
|
export { __iconNode$n8 as __iconNode, University as default };
|
|
}
|
|
|
|
declare const __iconNode$n7: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ungroup {
|
|
export { __iconNode$n7 as __iconNode, Ungroup as default };
|
|
}
|
|
|
|
declare const __iconNode$n6: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_unfold_vertical {
|
|
export { __iconNode$n6 as __iconNode, UnfoldVertical as default };
|
|
}
|
|
|
|
declare const __iconNode$n5: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_unfold_horizontal {
|
|
export { __iconNode$n5 as __iconNode, UnfoldHorizontal as default };
|
|
}
|
|
|
|
declare const __iconNode$n4: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_undo {
|
|
export { __iconNode$n4 as __iconNode, Undo as default };
|
|
}
|
|
|
|
declare const __iconNode$n3: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_undo_dot {
|
|
export { __iconNode$n3 as __iconNode, UndoDot as default };
|
|
}
|
|
|
|
declare const __iconNode$n2: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_undo_2 {
|
|
export { __iconNode$n2 as __iconNode, Undo2 as default };
|
|
}
|
|
|
|
declare const __iconNode$n1: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_underline {
|
|
export { __iconNode$n1 as __iconNode, Underline as default };
|
|
}
|
|
|
|
declare const __iconNode$n0: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_umbrella {
|
|
export { __iconNode$n0 as __iconNode, Umbrella as default };
|
|
}
|
|
|
|
declare const __iconNode$m$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_umbrella_off {
|
|
export { __iconNode$m$ as __iconNode, UmbrellaOff as default };
|
|
}
|
|
|
|
declare const __iconNode$m_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_type {
|
|
export { __iconNode$m_ as __iconNode, Type as default };
|
|
}
|
|
|
|
declare const __iconNode$mZ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_type_outline {
|
|
export { __iconNode$mZ as __iconNode, TypeOutline as default };
|
|
}
|
|
|
|
declare const __iconNode$mY: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_twitter {
|
|
export { __iconNode$mY as __iconNode, Twitter as default };
|
|
}
|
|
|
|
declare const __iconNode$mX: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_twitch {
|
|
export { __iconNode$mX as __iconNode, Twitch as default };
|
|
}
|
|
|
|
declare const __iconNode$mW: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tv {
|
|
export { __iconNode$mW as __iconNode, Tv as default };
|
|
}
|
|
|
|
declare const __iconNode$mV: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tv_minimal {
|
|
export { __iconNode$mV as __iconNode, TvMinimal as default };
|
|
}
|
|
|
|
declare const __iconNode$mU: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tv_minimal_play {
|
|
export { __iconNode$mU as __iconNode, TvMinimalPlay as default };
|
|
}
|
|
|
|
declare const __iconNode$mT: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_turtle {
|
|
export { __iconNode$mT as __iconNode, Turtle as default };
|
|
}
|
|
|
|
declare const __iconNode$mS: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_truck {
|
|
export { __iconNode$mS as __iconNode, Truck as default };
|
|
}
|
|
|
|
declare const __iconNode$mR: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_trophy {
|
|
export { __iconNode$mR as __iconNode, Trophy as default };
|
|
}
|
|
|
|
declare const __iconNode$mQ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_triangle {
|
|
export { __iconNode$mQ as __iconNode, Triangle as default };
|
|
}
|
|
|
|
declare const __iconNode$mP: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_triangle_right {
|
|
export { __iconNode$mP as __iconNode, TriangleRight as default };
|
|
}
|
|
|
|
declare const __iconNode$mO: IconNode;
|
|
/**
|
|
* @component @name TriangleDashed
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/triangle-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 TriangleDashed: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_triangle_dashed {
|
|
export { __iconNode$mO as __iconNode, TriangleDashed as default };
|
|
}
|
|
|
|
declare const __iconNode$mN: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_triangle_alert {
|
|
export { __iconNode$mN as __iconNode, TriangleAlert as default };
|
|
}
|
|
|
|
declare const __iconNode$mM: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_trending_up {
|
|
export { __iconNode$mM as __iconNode, TrendingUp as default };
|
|
}
|
|
|
|
declare const __iconNode$mL: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_trending_up_down {
|
|
export { __iconNode$mL as __iconNode, TrendingUpDown as default };
|
|
}
|
|
|
|
declare const __iconNode$mK: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_trending_down {
|
|
export { __iconNode$mK as __iconNode, TrendingDown as default };
|
|
}
|
|
|
|
declare const __iconNode$mJ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_trello {
|
|
export { __iconNode$mJ as __iconNode, Trello as default };
|
|
}
|
|
|
|
declare const __iconNode$mI: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_trees {
|
|
export { __iconNode$mI as __iconNode, Trees as default };
|
|
}
|
|
|
|
declare const __iconNode$mH: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tree_pine {
|
|
export { __iconNode$mH as __iconNode, TreePine as default };
|
|
}
|
|
|
|
declare const __iconNode$mG: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tree_palm {
|
|
export { __iconNode$mG as __iconNode, TreePalm as default };
|
|
}
|
|
|
|
declare const __iconNode$mF: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tree_deciduous {
|
|
export { __iconNode$mF as __iconNode, TreeDeciduous as default };
|
|
}
|
|
|
|
declare const __iconNode$mE: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_trash {
|
|
export { __iconNode$mE as __iconNode, Trash as default };
|
|
}
|
|
|
|
declare const __iconNode$mD: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_trash_2 {
|
|
export { __iconNode$mD as __iconNode, Trash2 as default };
|
|
}
|
|
|
|
declare const __iconNode$mC: IconNode;
|
|
/**
|
|
* @component @name Transgender
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/transgender
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
|
*
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
* @returns {JSX.Element} JSX Element
|
|
*
|
|
*/
|
|
declare const Transgender: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_transgender {
|
|
export { __iconNode$mC as __iconNode, Transgender as default };
|
|
}
|
|
|
|
declare const __iconNode$mB: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tram_front {
|
|
export { __iconNode$mB as __iconNode, TramFront as default };
|
|
}
|
|
|
|
declare const __iconNode$mA: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_train_track {
|
|
export { __iconNode$mA as __iconNode, TrainTrack as default };
|
|
}
|
|
|
|
declare const __iconNode$mz: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_train_front {
|
|
export { __iconNode$mz as __iconNode, TrainFront as default };
|
|
}
|
|
|
|
declare const __iconNode$my: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_train_front_tunnel {
|
|
export { __iconNode$my as __iconNode, TrainFrontTunnel as default };
|
|
}
|
|
|
|
declare const __iconNode$mx: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_traffic_cone {
|
|
export { __iconNode$mx as __iconNode, TrafficCone as default };
|
|
}
|
|
|
|
declare const __iconNode$mw: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tractor {
|
|
export { __iconNode$mw as __iconNode, Tractor as default };
|
|
}
|
|
|
|
declare const __iconNode$mv: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_toy_brick {
|
|
export { __iconNode$mv as __iconNode, ToyBrick as default };
|
|
}
|
|
|
|
declare const __iconNode$mu: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tower_control {
|
|
export { __iconNode$mu as __iconNode, TowerControl as default };
|
|
}
|
|
|
|
declare const __iconNode$mt: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_touchpad {
|
|
export { __iconNode$mt as __iconNode, Touchpad as default };
|
|
}
|
|
|
|
declare const __iconNode$ms: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_touchpad_off {
|
|
export { __iconNode$ms as __iconNode, TouchpadOff as default };
|
|
}
|
|
|
|
declare const __iconNode$mr: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_torus {
|
|
export { __iconNode$mr as __iconNode, Torus as default };
|
|
}
|
|
|
|
declare const __iconNode$mq: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tornado {
|
|
export { __iconNode$mq as __iconNode, Tornado as default };
|
|
}
|
|
|
|
declare const __iconNode$mp: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_toilet {
|
|
export { __iconNode$mp as __iconNode, Toilet as default };
|
|
}
|
|
|
|
declare const __iconNode$mo: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_toggle_right {
|
|
export { __iconNode$mo as __iconNode, ToggleRight as default };
|
|
}
|
|
|
|
declare const __iconNode$mn: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_toggle_left {
|
|
export { __iconNode$mn as __iconNode, ToggleLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$mm: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_timer {
|
|
export { __iconNode$mm as __iconNode, Timer as default };
|
|
}
|
|
|
|
declare const __iconNode$ml: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_timer_reset {
|
|
export { __iconNode$ml as __iconNode, TimerReset as default };
|
|
}
|
|
|
|
declare const __iconNode$mk: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_timer_off {
|
|
export { __iconNode$mk as __iconNode, TimerOff as default };
|
|
}
|
|
|
|
declare const __iconNode$mj: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tickets {
|
|
export { __iconNode$mj as __iconNode, Tickets as default };
|
|
}
|
|
|
|
declare const __iconNode$mi: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tickets_plane {
|
|
export { __iconNode$mi as __iconNode, TicketsPlane as default };
|
|
}
|
|
|
|
declare const __iconNode$mh: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ticket {
|
|
export { __iconNode$mh as __iconNode, Ticket as default };
|
|
}
|
|
|
|
declare const __iconNode$mg: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ticket_x {
|
|
export { __iconNode$mg as __iconNode, TicketX as default };
|
|
}
|
|
|
|
declare const __iconNode$mf: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ticket_slash {
|
|
export { __iconNode$mf as __iconNode, TicketSlash as default };
|
|
}
|
|
|
|
declare const __iconNode$me: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ticket_plus {
|
|
export { __iconNode$me as __iconNode, TicketPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$md: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ticket_percent {
|
|
export { __iconNode$md as __iconNode, TicketPercent as default };
|
|
}
|
|
|
|
declare const __iconNode$mc: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ticket_minus {
|
|
export { __iconNode$mc as __iconNode, TicketMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$mb: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ticket_check {
|
|
export { __iconNode$mb as __iconNode, TicketCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$ma: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_thumbs_up {
|
|
export { __iconNode$ma as __iconNode, ThumbsUp as default };
|
|
}
|
|
|
|
declare const __iconNode$m9: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_thumbs_down {
|
|
export { __iconNode$m9 as __iconNode, ThumbsDown as default };
|
|
}
|
|
|
|
declare const __iconNode$m8: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_thermometer {
|
|
export { __iconNode$m8 as __iconNode, Thermometer as default };
|
|
}
|
|
|
|
declare const __iconNode$m7: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_thermometer_sun {
|
|
export { __iconNode$m7 as __iconNode, ThermometerSun as default };
|
|
}
|
|
|
|
declare const __iconNode$m6: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_thermometer_snowflake {
|
|
export { __iconNode$m6 as __iconNode, ThermometerSnowflake as default };
|
|
}
|
|
|
|
declare const __iconNode$m5: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_theater {
|
|
export { __iconNode$m5 as __iconNode, Theater as default };
|
|
}
|
|
|
|
declare const __iconNode$m4: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_text {
|
|
export { __iconNode$m4 as __iconNode, Text as default };
|
|
}
|
|
|
|
declare const __iconNode$m3: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_text_select {
|
|
export { __iconNode$m3 as __iconNode, TextSelect as default };
|
|
}
|
|
|
|
declare const __iconNode$m2: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_text_search {
|
|
export { __iconNode$m2 as __iconNode, TextSearch as default };
|
|
}
|
|
|
|
declare const __iconNode$m1: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_text_quote {
|
|
export { __iconNode$m1 as __iconNode, TextQuote as default };
|
|
}
|
|
|
|
declare const __iconNode$m0: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_text_cursor {
|
|
export { __iconNode$m0 as __iconNode, TextCursor as default };
|
|
}
|
|
|
|
declare const __iconNode$l$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_text_cursor_input {
|
|
export { __iconNode$l$ as __iconNode, TextCursorInput as default };
|
|
}
|
|
|
|
declare const __iconNode$l_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_test_tubes {
|
|
export { __iconNode$l_ as __iconNode, TestTubes as default };
|
|
}
|
|
|
|
declare const __iconNode$lZ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_test_tube {
|
|
export { __iconNode$lZ as __iconNode, TestTube as default };
|
|
}
|
|
|
|
declare const __iconNode$lY: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_test_tube_diagonal {
|
|
export { __iconNode$lY as __iconNode, TestTubeDiagonal as default };
|
|
}
|
|
|
|
declare const __iconNode$lX: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_terminal {
|
|
export { __iconNode$lX as __iconNode, Terminal as default };
|
|
}
|
|
|
|
declare const __iconNode$lW: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tent {
|
|
export { __iconNode$lW as __iconNode, Tent as default };
|
|
}
|
|
|
|
declare const __iconNode$lV: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tent_tree {
|
|
export { __iconNode$lV as __iconNode, TentTree as default };
|
|
}
|
|
|
|
declare const __iconNode$lU: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_telescope {
|
|
export { __iconNode$lU as __iconNode, Telescope as default };
|
|
}
|
|
|
|
declare const __iconNode$lT: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_target {
|
|
export { __iconNode$lT as __iconNode, Target as default };
|
|
}
|
|
|
|
declare const __iconNode$lS: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tangent {
|
|
export { __iconNode$lS as __iconNode, Tangent as default };
|
|
}
|
|
|
|
declare const __iconNode$lR: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tally_5 {
|
|
export { __iconNode$lR as __iconNode, Tally5 as default };
|
|
}
|
|
|
|
declare const __iconNode$lQ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tally_4 {
|
|
export { __iconNode$lQ as __iconNode, Tally4 as default };
|
|
}
|
|
|
|
declare const __iconNode$lP: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tally_3 {
|
|
export { __iconNode$lP as __iconNode, Tally3 as default };
|
|
}
|
|
|
|
declare const __iconNode$lO: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tally_2 {
|
|
export { __iconNode$lO as __iconNode, Tally2 as default };
|
|
}
|
|
|
|
declare const __iconNode$lN: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tally_1 {
|
|
export { __iconNode$lN as __iconNode, Tally1 as default };
|
|
}
|
|
|
|
declare const __iconNode$lM: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tags {
|
|
export { __iconNode$lM as __iconNode, Tags as default };
|
|
}
|
|
|
|
declare const __iconNode$lL: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tag {
|
|
export { __iconNode$lL as __iconNode, Tag as default };
|
|
}
|
|
|
|
declare const __iconNode$lK: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tablets {
|
|
export { __iconNode$lK as __iconNode, Tablets as default };
|
|
}
|
|
|
|
declare const __iconNode$lJ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tablet {
|
|
export { __iconNode$lJ as __iconNode, Tablet as default };
|
|
}
|
|
|
|
declare const __iconNode$lI: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_tablet_smartphone {
|
|
export { __iconNode$lI as __iconNode, TabletSmartphone as default };
|
|
}
|
|
|
|
declare const __iconNode$lH: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_table {
|
|
export { __iconNode$lH as __iconNode, Table as default };
|
|
}
|
|
|
|
declare const __iconNode$lG: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_table_rows_split {
|
|
export { __iconNode$lG as __iconNode, TableRowsSplit as default };
|
|
}
|
|
|
|
declare const __iconNode$lF: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_table_properties {
|
|
export { __iconNode$lF as __iconNode, TableProperties as default };
|
|
}
|
|
|
|
declare const __iconNode$lE: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_table_of_contents {
|
|
export { __iconNode$lE as __iconNode, TableOfContents as default };
|
|
}
|
|
|
|
declare const __iconNode$lD: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_table_columns_split {
|
|
export { __iconNode$lD as __iconNode, TableColumnsSplit as default };
|
|
}
|
|
|
|
declare const __iconNode$lC: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_table_cells_split {
|
|
export { __iconNode$lC as __iconNode, TableCellsSplit as default };
|
|
}
|
|
|
|
declare const __iconNode$lB: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_table_cells_merge {
|
|
export { __iconNode$lB as __iconNode, TableCellsMerge as default };
|
|
}
|
|
|
|
declare const __iconNode$lA: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_table_2 {
|
|
export { __iconNode$lA as __iconNode, Table2 as default };
|
|
}
|
|
|
|
declare const __iconNode$lz: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_syringe {
|
|
export { __iconNode$lz as __iconNode, Syringe as default };
|
|
}
|
|
|
|
declare const __iconNode$ly: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_swords {
|
|
export { __iconNode$ly as __iconNode, Swords as default };
|
|
}
|
|
|
|
declare const __iconNode$lx: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sword {
|
|
export { __iconNode$lx as __iconNode, Sword as default };
|
|
}
|
|
|
|
declare const __iconNode$lw: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_switch_camera {
|
|
export { __iconNode$lw as __iconNode, SwitchCamera as default };
|
|
}
|
|
|
|
declare const __iconNode$lv: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_swiss_franc {
|
|
export { __iconNode$lv as __iconNode, SwissFranc as default };
|
|
}
|
|
|
|
declare const __iconNode$lu: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_swatch_book {
|
|
export { __iconNode$lu as __iconNode, SwatchBook as default };
|
|
}
|
|
|
|
declare const __iconNode$lt: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_superscript {
|
|
export { __iconNode$lt as __iconNode, Superscript as default };
|
|
}
|
|
|
|
declare const __iconNode$ls: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sunset {
|
|
export { __iconNode$ls as __iconNode, Sunset as default };
|
|
}
|
|
|
|
declare const __iconNode$lr: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sunrise {
|
|
export { __iconNode$lr as __iconNode, Sunrise as default };
|
|
}
|
|
|
|
declare const __iconNode$lq: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sun {
|
|
export { __iconNode$lq as __iconNode, Sun as default };
|
|
}
|
|
|
|
declare const __iconNode$lp: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sun_snow {
|
|
export { __iconNode$lp as __iconNode, SunSnow as default };
|
|
}
|
|
|
|
declare const __iconNode$lo: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sun_moon {
|
|
export { __iconNode$lo as __iconNode, SunMoon as default };
|
|
}
|
|
|
|
declare const __iconNode$ln: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sun_medium {
|
|
export { __iconNode$ln as __iconNode, SunMedium as default };
|
|
}
|
|
|
|
declare const __iconNode$lm: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sun_dim {
|
|
export { __iconNode$lm as __iconNode, SunDim as default };
|
|
}
|
|
|
|
declare const __iconNode$ll: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_subscript {
|
|
export { __iconNode$ll as __iconNode, Subscript as default };
|
|
}
|
|
|
|
declare const __iconNode$lk: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_strikethrough {
|
|
export { __iconNode$lk as __iconNode, Strikethrough as default };
|
|
}
|
|
|
|
declare const __iconNode$lj: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_stretch_vertical {
|
|
export { __iconNode$lj as __iconNode, StretchVertical as default };
|
|
}
|
|
|
|
declare const __iconNode$li: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_stretch_horizontal {
|
|
export { __iconNode$li as __iconNode, StretchHorizontal as default };
|
|
}
|
|
|
|
declare const __iconNode$lh: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_store {
|
|
export { __iconNode$lh as __iconNode, Store as default };
|
|
}
|
|
|
|
declare const __iconNode$lg: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sticky_note {
|
|
export { __iconNode$lg as __iconNode, StickyNote as default };
|
|
}
|
|
|
|
declare const __iconNode$lf: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sticker {
|
|
export { __iconNode$lf as __iconNode, Sticker as default };
|
|
}
|
|
|
|
declare const __iconNode$le: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_stethoscope {
|
|
export { __iconNode$le as __iconNode, Stethoscope as default };
|
|
}
|
|
|
|
declare const __iconNode$ld: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_step_forward {
|
|
export { __iconNode$ld as __iconNode, StepForward as default };
|
|
}
|
|
|
|
declare const __iconNode$lc: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_step_back {
|
|
export { __iconNode$lc as __iconNode, StepBack as default };
|
|
}
|
|
|
|
declare const __iconNode$lb: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_star {
|
|
export { __iconNode$lb as __iconNode, Star as default };
|
|
}
|
|
|
|
declare const __iconNode$la: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_star_off {
|
|
export { __iconNode$la as __iconNode, StarOff as default };
|
|
}
|
|
|
|
declare const __iconNode$l9: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_star_half {
|
|
export { __iconNode$l9 as __iconNode, StarHalf as default };
|
|
}
|
|
|
|
declare const __iconNode$l8: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_stamp {
|
|
export { __iconNode$l8 as __iconNode, Stamp as default };
|
|
}
|
|
|
|
declare const __iconNode$l7: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_squirrel {
|
|
export { __iconNode$l7 as __iconNode, Squirrel as default };
|
|
}
|
|
|
|
declare const __iconNode$l6: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_squircle {
|
|
export { __iconNode$l6 as __iconNode, Squircle as default };
|
|
}
|
|
|
|
declare const __iconNode$l5: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square {
|
|
export { __iconNode$l5 as __iconNode, Square as default };
|
|
}
|
|
|
|
declare const __iconNode$l4: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_x {
|
|
export { __iconNode$l4 as __iconNode, SquareX as default };
|
|
}
|
|
|
|
declare const __iconNode$l3: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_user {
|
|
export { __iconNode$l3 as __iconNode, SquareUser as default };
|
|
}
|
|
|
|
declare const __iconNode$l2: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_user_round {
|
|
export { __iconNode$l2 as __iconNode, SquareUserRound as default };
|
|
}
|
|
|
|
declare const __iconNode$l1: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_terminal {
|
|
export { __iconNode$l1 as __iconNode, SquareTerminal as default };
|
|
}
|
|
|
|
declare const __iconNode$l0: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_stack {
|
|
export { __iconNode$l0 as __iconNode, SquareStack as default };
|
|
}
|
|
|
|
declare const __iconNode$k$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_square {
|
|
export { __iconNode$k$ as __iconNode, SquareSquare as default };
|
|
}
|
|
|
|
declare const __iconNode$k_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_split_vertical {
|
|
export { __iconNode$k_ as __iconNode, SquareSplitVertical as default };
|
|
}
|
|
|
|
declare const __iconNode$kZ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_split_horizontal {
|
|
export { __iconNode$kZ as __iconNode, SquareSplitHorizontal as default };
|
|
}
|
|
|
|
declare const __iconNode$kY: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_slash {
|
|
export { __iconNode$kY as __iconNode, SquareSlash as default };
|
|
}
|
|
|
|
declare const __iconNode$kX: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_sigma {
|
|
export { __iconNode$kX as __iconNode, SquareSigma as default };
|
|
}
|
|
|
|
declare const __iconNode$kW: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_scissors {
|
|
export { __iconNode$kW as __iconNode, SquareScissors as default };
|
|
}
|
|
|
|
declare const __iconNode$kV: IconNode;
|
|
/**
|
|
* @component @name SquareRoundCorner
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/square-round-corner
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
|
*
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
* @returns {JSX.Element} JSX Element
|
|
*
|
|
*/
|
|
declare const SquareRoundCorner: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_square_round_corner {
|
|
export { __iconNode$kV as __iconNode, SquareRoundCorner as default };
|
|
}
|
|
|
|
declare const __iconNode$kU: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_radical {
|
|
export { __iconNode$kU as __iconNode, SquareRadical as default };
|
|
}
|
|
|
|
declare const __iconNode$kT: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_power {
|
|
export { __iconNode$kT as __iconNode, SquarePower as default };
|
|
}
|
|
|
|
declare const __iconNode$kS: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_plus {
|
|
export { __iconNode$kS as __iconNode, SquarePlus as default };
|
|
}
|
|
|
|
declare const __iconNode$kR: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_play {
|
|
export { __iconNode$kR as __iconNode, SquarePlay as default };
|
|
}
|
|
|
|
declare const __iconNode$kQ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_pilcrow {
|
|
export { __iconNode$kQ as __iconNode, SquarePilcrow as default };
|
|
}
|
|
|
|
declare const __iconNode$kP: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_pi {
|
|
export { __iconNode$kP as __iconNode, SquarePi as default };
|
|
}
|
|
|
|
declare const __iconNode$kO: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_percent {
|
|
export { __iconNode$kO as __iconNode, SquarePercent as default };
|
|
}
|
|
|
|
declare const __iconNode$kN: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_pen {
|
|
export { __iconNode$kN as __iconNode, SquarePen as default };
|
|
}
|
|
|
|
declare const __iconNode$kM: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_parking {
|
|
export { __iconNode$kM as __iconNode, SquareParking as default };
|
|
}
|
|
|
|
declare const __iconNode$kL: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_parking_off {
|
|
export { __iconNode$kL as __iconNode, SquareParkingOff as default };
|
|
}
|
|
|
|
declare const __iconNode$kK: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_mouse_pointer {
|
|
export { __iconNode$kK as __iconNode, SquareMousePointer as default };
|
|
}
|
|
|
|
declare const __iconNode$kJ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_minus {
|
|
export { __iconNode$kJ as __iconNode, SquareMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$kI: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_menu {
|
|
export { __iconNode$kI as __iconNode, SquareMenu as default };
|
|
}
|
|
|
|
declare const __iconNode$kH: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_m {
|
|
export { __iconNode$kH as __iconNode, SquareM as default };
|
|
}
|
|
|
|
declare const __iconNode$kG: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_library {
|
|
export { __iconNode$kG as __iconNode, SquareLibrary as default };
|
|
}
|
|
|
|
declare const __iconNode$kF: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_kanban {
|
|
export { __iconNode$kF as __iconNode, SquareKanban as default };
|
|
}
|
|
|
|
declare const __iconNode$kE: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_function {
|
|
export { __iconNode$kE as __iconNode, SquareFunction as default };
|
|
}
|
|
|
|
declare const __iconNode$kD: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_equal {
|
|
export { __iconNode$kD as __iconNode, SquareEqual as default };
|
|
}
|
|
|
|
declare const __iconNode$kC: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_dot {
|
|
export { __iconNode$kC as __iconNode, SquareDot as default };
|
|
}
|
|
|
|
declare const __iconNode$kB: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_divide {
|
|
export { __iconNode$kB as __iconNode, SquareDivide as default };
|
|
}
|
|
|
|
declare const __iconNode$kA: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_dashed {
|
|
export { __iconNode$kA as __iconNode, SquareDashed as default };
|
|
}
|
|
|
|
declare const __iconNode$kz: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_dashed_mouse_pointer {
|
|
export { __iconNode$kz as __iconNode, SquareDashedMousePointer as default };
|
|
}
|
|
|
|
declare const __iconNode$ky: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_dashed_kanban {
|
|
export { __iconNode$ky as __iconNode, SquareDashedKanban as default };
|
|
}
|
|
|
|
declare const __iconNode$kx: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_dashed_bottom {
|
|
export { __iconNode$kx as __iconNode, SquareDashedBottom as default };
|
|
}
|
|
|
|
declare const __iconNode$kw: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_dashed_bottom_code {
|
|
export { __iconNode$kw as __iconNode, SquareDashedBottomCode as default };
|
|
}
|
|
|
|
declare const __iconNode$kv: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_code {
|
|
export { __iconNode$kv as __iconNode, SquareCode as default };
|
|
}
|
|
|
|
declare const __iconNode$ku: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_chevron_up {
|
|
export { __iconNode$ku as __iconNode, SquareChevronUp as default };
|
|
}
|
|
|
|
declare const __iconNode$kt: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_chevron_right {
|
|
export { __iconNode$kt as __iconNode, SquareChevronRight as default };
|
|
}
|
|
|
|
declare const __iconNode$ks: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_chevron_left {
|
|
export { __iconNode$ks as __iconNode, SquareChevronLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$kr: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_chevron_down {
|
|
export { __iconNode$kr as __iconNode, SquareChevronDown as default };
|
|
}
|
|
|
|
declare const __iconNode$kq: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_check {
|
|
export { __iconNode$kq as __iconNode, SquareCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$kp: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_check_big {
|
|
export { __iconNode$kp as __iconNode, SquareCheckBig as default };
|
|
}
|
|
|
|
declare const __iconNode$ko: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_chart_gantt {
|
|
export { __iconNode$ko as __iconNode, SquareChartGantt as default };
|
|
}
|
|
|
|
declare const __iconNode$kn: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_bottom_dashed_scissors {
|
|
export { __iconNode$kn as __iconNode, SquareBottomDashedScissors as default };
|
|
}
|
|
|
|
declare const __iconNode$km: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_asterisk {
|
|
export { __iconNode$km as __iconNode, SquareAsterisk as default };
|
|
}
|
|
|
|
declare const __iconNode$kl: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_arrow_up {
|
|
export { __iconNode$kl as __iconNode, SquareArrowUp as default };
|
|
}
|
|
|
|
declare const __iconNode$kk: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_arrow_up_right {
|
|
export { __iconNode$kk as __iconNode, SquareArrowUpRight as default };
|
|
}
|
|
|
|
declare const __iconNode$kj: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_arrow_up_left {
|
|
export { __iconNode$kj as __iconNode, SquareArrowUpLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$ki: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_arrow_right {
|
|
export { __iconNode$ki as __iconNode, SquareArrowRight as default };
|
|
}
|
|
|
|
declare const __iconNode$kh: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_arrow_out_up_right {
|
|
export { __iconNode$kh as __iconNode, SquareArrowOutUpRight as default };
|
|
}
|
|
|
|
declare const __iconNode$kg: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_arrow_out_up_left {
|
|
export { __iconNode$kg as __iconNode, SquareArrowOutUpLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$kf: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_arrow_out_down_right {
|
|
export { __iconNode$kf as __iconNode, SquareArrowOutDownRight as default };
|
|
}
|
|
|
|
declare const __iconNode$ke: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_arrow_out_down_left {
|
|
export { __iconNode$ke as __iconNode, SquareArrowOutDownLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$kd: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_arrow_left {
|
|
export { __iconNode$kd as __iconNode, SquareArrowLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$kc: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_arrow_down {
|
|
export { __iconNode$kc as __iconNode, SquareArrowDown as default };
|
|
}
|
|
|
|
declare const __iconNode$kb: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_arrow_down_right {
|
|
export { __iconNode$kb as __iconNode, SquareArrowDownRight as default };
|
|
}
|
|
|
|
declare const __iconNode$ka: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_arrow_down_left {
|
|
export { __iconNode$ka as __iconNode, SquareArrowDownLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$k9: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_square_activity {
|
|
export { __iconNode$k9 as __iconNode, SquareActivity as default };
|
|
}
|
|
|
|
declare const __iconNode$k8: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sprout {
|
|
export { __iconNode$k8 as __iconNode, Sprout as default };
|
|
}
|
|
|
|
declare const __iconNode$k7: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_spray_can {
|
|
export { __iconNode$k7 as __iconNode, SprayCan as default };
|
|
}
|
|
|
|
declare const __iconNode$k6: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_split {
|
|
export { __iconNode$k6 as __iconNode, Split as default };
|
|
}
|
|
|
|
declare const __iconNode$k5: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_spline {
|
|
export { __iconNode$k5 as __iconNode, Spline as default };
|
|
}
|
|
|
|
declare const __iconNode$k4: IconNode;
|
|
/**
|
|
* @component @name SplinePointer
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/spline-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 SplinePointer: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_spline_pointer {
|
|
export { __iconNode$k4 as __iconNode, SplinePointer as default };
|
|
}
|
|
|
|
declare const __iconNode$k3: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_spell_check {
|
|
export { __iconNode$k3 as __iconNode, SpellCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$k2: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_spell_check_2 {
|
|
export { __iconNode$k2 as __iconNode, SpellCheck2 as default };
|
|
}
|
|
|
|
declare const __iconNode$k1: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_speech {
|
|
export { __iconNode$k1 as __iconNode, Speech as default };
|
|
}
|
|
|
|
declare const __iconNode$k0: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_speaker {
|
|
export { __iconNode$k0 as __iconNode, Speaker as default };
|
|
}
|
|
|
|
declare const __iconNode$j$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sparkles {
|
|
export { __iconNode$j$ as __iconNode, Sparkles as default };
|
|
}
|
|
|
|
declare const __iconNode$j_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sparkle {
|
|
export { __iconNode$j_ as __iconNode, Sparkle as default };
|
|
}
|
|
|
|
declare const __iconNode$jZ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_spade {
|
|
export { __iconNode$jZ as __iconNode, Spade as default };
|
|
}
|
|
|
|
declare const __iconNode$jY: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_space {
|
|
export { __iconNode$jY as __iconNode, Space as default };
|
|
}
|
|
|
|
declare const __iconNode$jX: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_soup {
|
|
export { __iconNode$jX as __iconNode, Soup as default };
|
|
}
|
|
|
|
declare const __iconNode$jW: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sofa {
|
|
export { __iconNode$jW as __iconNode, Sofa as default };
|
|
}
|
|
|
|
declare const __iconNode$jV: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_snowflake {
|
|
export { __iconNode$jV as __iconNode, Snowflake as default };
|
|
}
|
|
|
|
declare const __iconNode$jU: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_snail {
|
|
export { __iconNode$jU as __iconNode, Snail as default };
|
|
}
|
|
|
|
declare const __iconNode$jT: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_smile {
|
|
export { __iconNode$jT as __iconNode, Smile as default };
|
|
}
|
|
|
|
declare const __iconNode$jS: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_smile_plus {
|
|
export { __iconNode$jS as __iconNode, SmilePlus as default };
|
|
}
|
|
|
|
declare const __iconNode$jR: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_smartphone {
|
|
export { __iconNode$jR as __iconNode, Smartphone as default };
|
|
}
|
|
|
|
declare const __iconNode$jQ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_smartphone_nfc {
|
|
export { __iconNode$jQ as __iconNode, SmartphoneNfc as default };
|
|
}
|
|
|
|
declare const __iconNode$jP: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_smartphone_charging {
|
|
export { __iconNode$jP as __iconNode, SmartphoneCharging as default };
|
|
}
|
|
|
|
declare const __iconNode$jO: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sliders_vertical {
|
|
export { __iconNode$jO as __iconNode, SlidersVertical as default };
|
|
}
|
|
|
|
declare const __iconNode$jN: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sliders_horizontal {
|
|
export { __iconNode$jN as __iconNode, SlidersHorizontal as default };
|
|
}
|
|
|
|
declare const __iconNode$jM: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_slice {
|
|
export { __iconNode$jM as __iconNode, Slice as default };
|
|
}
|
|
|
|
declare const __iconNode$jL: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_slash {
|
|
export { __iconNode$jL as __iconNode, Slash as default };
|
|
}
|
|
|
|
declare const __iconNode$jK: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_slack {
|
|
export { __iconNode$jK as __iconNode, Slack as default };
|
|
}
|
|
|
|
declare const __iconNode$jJ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_skull {
|
|
export { __iconNode$jJ as __iconNode, Skull as default };
|
|
}
|
|
|
|
declare const __iconNode$jI: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_skip_forward {
|
|
export { __iconNode$jI as __iconNode, SkipForward as default };
|
|
}
|
|
|
|
declare const __iconNode$jH: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_skip_back {
|
|
export { __iconNode$jH as __iconNode, SkipBack as default };
|
|
}
|
|
|
|
declare const __iconNode$jG: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_siren {
|
|
export { __iconNode$jG as __iconNode, Siren as default };
|
|
}
|
|
|
|
declare const __iconNode$jF: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_signpost {
|
|
export { __iconNode$jF as __iconNode, Signpost as default };
|
|
}
|
|
|
|
declare const __iconNode$jE: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_signpost_big {
|
|
export { __iconNode$jE as __iconNode, SignpostBig as default };
|
|
}
|
|
|
|
declare const __iconNode$jD: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_signature {
|
|
export { __iconNode$jD as __iconNode, Signature as default };
|
|
}
|
|
|
|
declare const __iconNode$jC: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_signal {
|
|
export { __iconNode$jC as __iconNode, Signal as default };
|
|
}
|
|
|
|
declare const __iconNode$jB: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_signal_zero {
|
|
export { __iconNode$jB as __iconNode, SignalZero as default };
|
|
}
|
|
|
|
declare const __iconNode$jA: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_signal_medium {
|
|
export { __iconNode$jA as __iconNode, SignalMedium as default };
|
|
}
|
|
|
|
declare const __iconNode$jz: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_signal_low {
|
|
export { __iconNode$jz as __iconNode, SignalLow as default };
|
|
}
|
|
|
|
declare const __iconNode$jy: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_signal_high {
|
|
export { __iconNode$jy as __iconNode, SignalHigh as default };
|
|
}
|
|
|
|
declare const __iconNode$jx: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sigma {
|
|
export { __iconNode$jx as __iconNode, Sigma as default };
|
|
}
|
|
|
|
declare const __iconNode$jw: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shuffle {
|
|
export { __iconNode$jw as __iconNode, Shuffle as default };
|
|
}
|
|
|
|
declare const __iconNode$jv: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shrub {
|
|
export { __iconNode$jv as __iconNode, Shrub as default };
|
|
}
|
|
|
|
declare const __iconNode$ju: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shrink {
|
|
export { __iconNode$ju as __iconNode, Shrink as default };
|
|
}
|
|
|
|
declare const __iconNode$jt: IconNode;
|
|
/**
|
|
* @component @name Shrimp
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/shrimp
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
|
*
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
* @returns {JSX.Element} JSX Element
|
|
*
|
|
*/
|
|
declare const Shrimp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_shrimp {
|
|
export { __iconNode$jt as __iconNode, Shrimp as default };
|
|
}
|
|
|
|
declare const __iconNode$js: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shower_head {
|
|
export { __iconNode$js as __iconNode, ShowerHead as default };
|
|
}
|
|
|
|
declare const __iconNode$jr: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shovel {
|
|
export { __iconNode$jr as __iconNode, Shovel as default };
|
|
}
|
|
|
|
declare const __iconNode$jq: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shopping_cart {
|
|
export { __iconNode$jq as __iconNode, ShoppingCart as default };
|
|
}
|
|
|
|
declare const __iconNode$jp: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shopping_basket {
|
|
export { __iconNode$jp as __iconNode, ShoppingBasket as default };
|
|
}
|
|
|
|
declare const __iconNode$jo: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shopping_bag {
|
|
export { __iconNode$jo as __iconNode, ShoppingBag as default };
|
|
}
|
|
|
|
declare const __iconNode$jn: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shirt {
|
|
export { __iconNode$jn as __iconNode, Shirt as default };
|
|
}
|
|
|
|
declare const __iconNode$jm: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ship {
|
|
export { __iconNode$jm as __iconNode, Ship as default };
|
|
}
|
|
|
|
declare const __iconNode$jl: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ship_wheel {
|
|
export { __iconNode$jl as __iconNode, ShipWheel as default };
|
|
}
|
|
|
|
declare const __iconNode$jk: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shield {
|
|
export { __iconNode$jk as __iconNode, Shield as default };
|
|
}
|
|
|
|
declare const __iconNode$jj: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shield_x {
|
|
export { __iconNode$jj as __iconNode, ShieldX as default };
|
|
}
|
|
|
|
declare const __iconNode$ji: IconNode;
|
|
/**
|
|
* @component @name ShieldUser
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/shield-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 ShieldUser: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_shield_user {
|
|
export { __iconNode$ji as __iconNode, ShieldUser as default };
|
|
}
|
|
|
|
declare const __iconNode$jh: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shield_question {
|
|
export { __iconNode$jh as __iconNode, ShieldQuestion as default };
|
|
}
|
|
|
|
declare const __iconNode$jg: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shield_plus {
|
|
export { __iconNode$jg as __iconNode, ShieldPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$jf: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shield_off {
|
|
export { __iconNode$jf as __iconNode, ShieldOff as default };
|
|
}
|
|
|
|
declare const __iconNode$je: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shield_minus {
|
|
export { __iconNode$je as __iconNode, ShieldMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$jd: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shield_half {
|
|
export { __iconNode$jd as __iconNode, ShieldHalf as default };
|
|
}
|
|
|
|
declare const __iconNode$jc: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shield_ellipsis {
|
|
export { __iconNode$jc as __iconNode, ShieldEllipsis as default };
|
|
}
|
|
|
|
declare const __iconNode$jb: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shield_check {
|
|
export { __iconNode$jb as __iconNode, ShieldCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$ja: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shield_ban {
|
|
export { __iconNode$ja as __iconNode, ShieldBan as default };
|
|
}
|
|
|
|
declare const __iconNode$j9: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shield_alert {
|
|
export { __iconNode$j9 as __iconNode, ShieldAlert as default };
|
|
}
|
|
|
|
declare const __iconNode$j8: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shell {
|
|
export { __iconNode$j8 as __iconNode, Shell as default };
|
|
}
|
|
|
|
declare const __iconNode$j7: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sheet {
|
|
export { __iconNode$j7 as __iconNode, Sheet as default };
|
|
}
|
|
|
|
declare const __iconNode$j6: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_share {
|
|
export { __iconNode$j6 as __iconNode, Share as default };
|
|
}
|
|
|
|
declare const __iconNode$j5: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_share_2 {
|
|
export { __iconNode$j5 as __iconNode, Share2 as default };
|
|
}
|
|
|
|
declare const __iconNode$j4: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_shapes {
|
|
export { __iconNode$j4 as __iconNode, Shapes as default };
|
|
}
|
|
|
|
declare const __iconNode$j3: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_settings {
|
|
export { __iconNode$j3 as __iconNode, Settings as default };
|
|
}
|
|
|
|
declare const __iconNode$j2: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_settings_2 {
|
|
export { __iconNode$j2 as __iconNode, Settings2 as default };
|
|
}
|
|
|
|
declare const __iconNode$j1: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_server {
|
|
export { __iconNode$j1 as __iconNode, Server as default };
|
|
}
|
|
|
|
declare const __iconNode$j0: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_server_off {
|
|
export { __iconNode$j0 as __iconNode, ServerOff as default };
|
|
}
|
|
|
|
declare const __iconNode$i$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_server_crash {
|
|
export { __iconNode$i$ as __iconNode, ServerCrash as default };
|
|
}
|
|
|
|
declare const __iconNode$i_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_server_cog {
|
|
export { __iconNode$i_ as __iconNode, ServerCog as default };
|
|
}
|
|
|
|
declare const __iconNode$iZ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_separator_vertical {
|
|
export { __iconNode$iZ as __iconNode, SeparatorVertical as default };
|
|
}
|
|
|
|
declare const __iconNode$iY: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_separator_horizontal {
|
|
export { __iconNode$iY as __iconNode, SeparatorHorizontal as default };
|
|
}
|
|
|
|
declare const __iconNode$iX: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_send {
|
|
export { __iconNode$iX as __iconNode, Send as default };
|
|
}
|
|
|
|
declare const __iconNode$iW: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_send_to_back {
|
|
export { __iconNode$iW as __iconNode, SendToBack as default };
|
|
}
|
|
|
|
declare const __iconNode$iV: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_send_horizontal {
|
|
export { __iconNode$iV as __iconNode, SendHorizontal as default };
|
|
}
|
|
|
|
declare const __iconNode$iU: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_section {
|
|
export { __iconNode$iU as __iconNode, Section as default };
|
|
}
|
|
|
|
declare const __iconNode$iT: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_search {
|
|
export { __iconNode$iT as __iconNode, Search as default };
|
|
}
|
|
|
|
declare const __iconNode$iS: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_search_x {
|
|
export { __iconNode$iS as __iconNode, SearchX as default };
|
|
}
|
|
|
|
declare const __iconNode$iR: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_search_slash {
|
|
export { __iconNode$iR as __iconNode, SearchSlash as default };
|
|
}
|
|
|
|
declare const __iconNode$iQ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_search_code {
|
|
export { __iconNode$iQ as __iconNode, SearchCode as default };
|
|
}
|
|
|
|
declare const __iconNode$iP: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_search_check {
|
|
export { __iconNode$iP as __iconNode, SearchCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$iO: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_scroll {
|
|
export { __iconNode$iO as __iconNode, Scroll as default };
|
|
}
|
|
|
|
declare const __iconNode$iN: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_scroll_text {
|
|
export { __iconNode$iN as __iconNode, ScrollText as default };
|
|
}
|
|
|
|
declare const __iconNode$iM: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_screen_share {
|
|
export { __iconNode$iM as __iconNode, ScreenShare as default };
|
|
}
|
|
|
|
declare const __iconNode$iL: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_screen_share_off {
|
|
export { __iconNode$iL as __iconNode, ScreenShareOff as default };
|
|
}
|
|
|
|
declare const __iconNode$iK: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_scissors {
|
|
export { __iconNode$iK as __iconNode, Scissors as default };
|
|
}
|
|
|
|
declare const __iconNode$iJ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_scissors_line_dashed {
|
|
export { __iconNode$iJ as __iconNode, ScissorsLineDashed as default };
|
|
}
|
|
|
|
declare const __iconNode$iI: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_school {
|
|
export { __iconNode$iI as __iconNode, School as default };
|
|
}
|
|
|
|
declare const __iconNode$iH: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_scan {
|
|
export { __iconNode$iH as __iconNode, Scan as default };
|
|
}
|
|
|
|
declare const __iconNode$iG: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_scan_text {
|
|
export { __iconNode$iG as __iconNode, ScanText as default };
|
|
}
|
|
|
|
declare const __iconNode$iF: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_scan_search {
|
|
export { __iconNode$iF as __iconNode, ScanSearch as default };
|
|
}
|
|
|
|
declare const __iconNode$iE: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_scan_qr_code {
|
|
export { __iconNode$iE as __iconNode, ScanQrCode as default };
|
|
}
|
|
|
|
declare const __iconNode$iD: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_scan_line {
|
|
export { __iconNode$iD as __iconNode, ScanLine as default };
|
|
}
|
|
|
|
declare const __iconNode$iC: IconNode;
|
|
/**
|
|
* @component @name ScanHeart
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/scan-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 ScanHeart: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_scan_heart {
|
|
export { __iconNode$iC as __iconNode, ScanHeart as default };
|
|
}
|
|
|
|
declare const __iconNode$iB: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_scan_face {
|
|
export { __iconNode$iB as __iconNode, ScanFace as default };
|
|
}
|
|
|
|
declare const __iconNode$iA: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_scan_eye {
|
|
export { __iconNode$iA as __iconNode, ScanEye as default };
|
|
}
|
|
|
|
declare const __iconNode$iz: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_scan_barcode {
|
|
export { __iconNode$iz as __iconNode, ScanBarcode as default };
|
|
}
|
|
|
|
declare const __iconNode$iy: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_scaling {
|
|
export { __iconNode$iy as __iconNode, Scaling as default };
|
|
}
|
|
|
|
declare const __iconNode$ix: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_scale {
|
|
export { __iconNode$ix as __iconNode, Scale as default };
|
|
}
|
|
|
|
declare const __iconNode$iw: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_scale_3d {
|
|
export { __iconNode$iw as __iconNode, Scale3d as default };
|
|
}
|
|
|
|
declare const __iconNode$iv: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_save {
|
|
export { __iconNode$iv as __iconNode, Save as default };
|
|
}
|
|
|
|
declare const __iconNode$iu: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_save_off {
|
|
export { __iconNode$iu as __iconNode, SaveOff as default };
|
|
}
|
|
|
|
declare const __iconNode$it: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_save_all {
|
|
export { __iconNode$it as __iconNode, SaveAll as default };
|
|
}
|
|
|
|
declare const __iconNode$is: IconNode;
|
|
/**
|
|
* @component @name SaudiRiyal
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/saudi-riyal
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
|
*
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
* @returns {JSX.Element} JSX Element
|
|
*
|
|
*/
|
|
declare const SaudiRiyal: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_saudi_riyal {
|
|
export { __iconNode$is as __iconNode, SaudiRiyal as default };
|
|
}
|
|
|
|
declare const __iconNode$ir: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_satellite {
|
|
export { __iconNode$ir as __iconNode, Satellite as default };
|
|
}
|
|
|
|
declare const __iconNode$iq: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_satellite_dish {
|
|
export { __iconNode$iq as __iconNode, SatelliteDish as default };
|
|
}
|
|
|
|
declare const __iconNode$ip: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sandwich {
|
|
export { __iconNode$ip as __iconNode, Sandwich as default };
|
|
}
|
|
|
|
declare const __iconNode$io: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_salad {
|
|
export { __iconNode$io as __iconNode, Salad as default };
|
|
}
|
|
|
|
declare const __iconNode$in: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_sailboat {
|
|
export { __iconNode$in as __iconNode, Sailboat as default };
|
|
}
|
|
|
|
declare const __iconNode$im: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_russian_ruble {
|
|
export { __iconNode$im as __iconNode, RussianRuble as default };
|
|
}
|
|
|
|
declare const __iconNode$il: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ruler {
|
|
export { __iconNode$il as __iconNode, Ruler as default };
|
|
}
|
|
|
|
declare const __iconNode$ik: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rss {
|
|
export { __iconNode$ik as __iconNode, Rss as default };
|
|
}
|
|
|
|
declare const __iconNode$ij: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rows_4 {
|
|
export { __iconNode$ij as __iconNode, Rows4 as default };
|
|
}
|
|
|
|
declare const __iconNode$ii: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rows_3 {
|
|
export { __iconNode$ii as __iconNode, Rows3 as default };
|
|
}
|
|
|
|
declare const __iconNode$ih: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rows_2 {
|
|
export { __iconNode$ih as __iconNode, Rows2 as default };
|
|
}
|
|
|
|
declare const __iconNode$ig: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_router {
|
|
export { __iconNode$ig as __iconNode, Router as default };
|
|
}
|
|
|
|
declare const __iconNode$if: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_route {
|
|
export { __iconNode$if as __iconNode, Route as default };
|
|
}
|
|
|
|
declare const __iconNode$ie: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_route_off {
|
|
export { __iconNode$ie as __iconNode, RouteOff as default };
|
|
}
|
|
|
|
declare const __iconNode$id: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rotate_cw {
|
|
export { __iconNode$id as __iconNode, RotateCw as default };
|
|
}
|
|
|
|
declare const __iconNode$ic: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rotate_cw_square {
|
|
export { __iconNode$ic as __iconNode, RotateCwSquare as default };
|
|
}
|
|
|
|
declare const __iconNode$ib: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rotate_ccw {
|
|
export { __iconNode$ib as __iconNode, RotateCcw as default };
|
|
}
|
|
|
|
declare const __iconNode$ia: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rotate_ccw_square {
|
|
export { __iconNode$ia as __iconNode, RotateCcwSquare as default };
|
|
}
|
|
|
|
declare const __iconNode$i9: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rotate_3d {
|
|
export { __iconNode$i9 as __iconNode, Rotate3d as default };
|
|
}
|
|
|
|
declare const __iconNode$i8: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_roller_coaster {
|
|
export { __iconNode$i8 as __iconNode, RollerCoaster as default };
|
|
}
|
|
|
|
declare const __iconNode$i7: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rocking_chair {
|
|
export { __iconNode$i7 as __iconNode, RockingChair as default };
|
|
}
|
|
|
|
declare const __iconNode$i6: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rocket {
|
|
export { __iconNode$i6 as __iconNode, Rocket as default };
|
|
}
|
|
|
|
declare const __iconNode$i5: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ribbon {
|
|
export { __iconNode$i5 as __iconNode, Ribbon as default };
|
|
}
|
|
|
|
declare const __iconNode$i4: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rewind {
|
|
export { __iconNode$i4 as __iconNode, Rewind as default };
|
|
}
|
|
|
|
declare const __iconNode$i3: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_reply {
|
|
export { __iconNode$i3 as __iconNode, Reply as default };
|
|
}
|
|
|
|
declare const __iconNode$i2: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_reply_all {
|
|
export { __iconNode$i2 as __iconNode, ReplyAll as default };
|
|
}
|
|
|
|
declare const __iconNode$i1: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_replace {
|
|
export { __iconNode$i1 as __iconNode, Replace as default };
|
|
}
|
|
|
|
declare const __iconNode$i0: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_replace_all {
|
|
export { __iconNode$i0 as __iconNode, ReplaceAll as default };
|
|
}
|
|
|
|
declare const __iconNode$h$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_repeat {
|
|
export { __iconNode$h$ as __iconNode, Repeat as default };
|
|
}
|
|
|
|
declare const __iconNode$h_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_repeat_2 {
|
|
export { __iconNode$h_ as __iconNode, Repeat2 as default };
|
|
}
|
|
|
|
declare const __iconNode$hZ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_repeat_1 {
|
|
export { __iconNode$hZ as __iconNode, Repeat1 as default };
|
|
}
|
|
|
|
declare const __iconNode$hY: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_remove_formatting {
|
|
export { __iconNode$hY as __iconNode, RemoveFormatting as default };
|
|
}
|
|
|
|
declare const __iconNode$hX: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_regex {
|
|
export { __iconNode$hX as __iconNode, Regex as default };
|
|
}
|
|
|
|
declare const __iconNode$hW: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_refrigerator {
|
|
export { __iconNode$hW as __iconNode, Refrigerator as default };
|
|
}
|
|
|
|
declare const __iconNode$hV: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_refresh_cw {
|
|
export { __iconNode$hV as __iconNode, RefreshCw as default };
|
|
}
|
|
|
|
declare const __iconNode$hU: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_refresh_cw_off {
|
|
export { __iconNode$hU as __iconNode, RefreshCwOff as default };
|
|
}
|
|
|
|
declare const __iconNode$hT: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_refresh_ccw {
|
|
export { __iconNode$hT as __iconNode, RefreshCcw as default };
|
|
}
|
|
|
|
declare const __iconNode$hS: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_refresh_ccw_dot {
|
|
export { __iconNode$hS as __iconNode, RefreshCcwDot as default };
|
|
}
|
|
|
|
declare const __iconNode$hR: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_redo {
|
|
export { __iconNode$hR as __iconNode, Redo as default };
|
|
}
|
|
|
|
declare const __iconNode$hQ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_redo_dot {
|
|
export { __iconNode$hQ as __iconNode, RedoDot as default };
|
|
}
|
|
|
|
declare const __iconNode$hP: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_redo_2 {
|
|
export { __iconNode$hP as __iconNode, Redo2 as default };
|
|
}
|
|
|
|
declare const __iconNode$hO: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_recycle {
|
|
export { __iconNode$hO as __iconNode, Recycle as default };
|
|
}
|
|
|
|
declare const __iconNode$hN: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rectangle_vertical {
|
|
export { __iconNode$hN as __iconNode, RectangleVertical as default };
|
|
}
|
|
|
|
declare const __iconNode$hM: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rectangle_horizontal {
|
|
export { __iconNode$hM as __iconNode, RectangleHorizontal as default };
|
|
}
|
|
|
|
declare const __iconNode$hL: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rectangle_ellipsis {
|
|
export { __iconNode$hL as __iconNode, RectangleEllipsis as default };
|
|
}
|
|
|
|
declare const __iconNode$hK: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_receipt {
|
|
export { __iconNode$hK as __iconNode, Receipt as default };
|
|
}
|
|
|
|
declare const __iconNode$hJ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_receipt_text {
|
|
export { __iconNode$hJ as __iconNode, ReceiptText as default };
|
|
}
|
|
|
|
declare const __iconNode$hI: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_receipt_swiss_franc {
|
|
export { __iconNode$hI as __iconNode, ReceiptSwissFranc as default };
|
|
}
|
|
|
|
declare const __iconNode$hH: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_receipt_russian_ruble {
|
|
export { __iconNode$hH as __iconNode, ReceiptRussianRuble as default };
|
|
}
|
|
|
|
declare const __iconNode$hG: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_receipt_pound_sterling {
|
|
export { __iconNode$hG as __iconNode, ReceiptPoundSterling as default };
|
|
}
|
|
|
|
declare const __iconNode$hF: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_receipt_japanese_yen {
|
|
export { __iconNode$hF as __iconNode, ReceiptJapaneseYen as default };
|
|
}
|
|
|
|
declare const __iconNode$hE: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_receipt_indian_rupee {
|
|
export { __iconNode$hE as __iconNode, ReceiptIndianRupee as default };
|
|
}
|
|
|
|
declare const __iconNode$hD: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_receipt_euro {
|
|
export { __iconNode$hD as __iconNode, ReceiptEuro as default };
|
|
}
|
|
|
|
declare const __iconNode$hC: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_receipt_cent {
|
|
export { __iconNode$hC as __iconNode, ReceiptCent as default };
|
|
}
|
|
|
|
declare const __iconNode$hB: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ratio {
|
|
export { __iconNode$hB as __iconNode, Ratio as default };
|
|
}
|
|
|
|
declare const __iconNode$hA: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rat {
|
|
export { __iconNode$hA as __iconNode, Rat as default };
|
|
}
|
|
|
|
declare const __iconNode$hz: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rainbow {
|
|
export { __iconNode$hz as __iconNode, Rainbow as default };
|
|
}
|
|
|
|
declare const __iconNode$hy: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rail_symbol {
|
|
export { __iconNode$hy as __iconNode, RailSymbol as default };
|
|
}
|
|
|
|
declare const __iconNode$hx: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_radius {
|
|
export { __iconNode$hx as __iconNode, Radius as default };
|
|
}
|
|
|
|
declare const __iconNode$hw: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_radio {
|
|
export { __iconNode$hw as __iconNode, Radio as default };
|
|
}
|
|
|
|
declare const __iconNode$hv: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_radio_tower {
|
|
export { __iconNode$hv as __iconNode, RadioTower as default };
|
|
}
|
|
|
|
declare const __iconNode$hu: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_radio_receiver {
|
|
export { __iconNode$hu as __iconNode, RadioReceiver as default };
|
|
}
|
|
|
|
declare const __iconNode$ht: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_radical {
|
|
export { __iconNode$ht as __iconNode, Radical as default };
|
|
}
|
|
|
|
declare const __iconNode$hs: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_radiation {
|
|
export { __iconNode$hs as __iconNode, Radiation as default };
|
|
}
|
|
|
|
declare const __iconNode$hr: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_radar {
|
|
export { __iconNode$hr as __iconNode, Radar as default };
|
|
}
|
|
|
|
declare const __iconNode$hq: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_rabbit {
|
|
export { __iconNode$hq as __iconNode, Rabbit as default };
|
|
}
|
|
|
|
declare const __iconNode$hp: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_quote {
|
|
export { __iconNode$hp as __iconNode, Quote as default };
|
|
}
|
|
|
|
declare const __iconNode$ho: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_qr_code {
|
|
export { __iconNode$ho as __iconNode, QrCode as default };
|
|
}
|
|
|
|
declare const __iconNode$hn: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pyramid {
|
|
export { __iconNode$hn as __iconNode, Pyramid as default };
|
|
}
|
|
|
|
declare const __iconNode$hm: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_puzzle {
|
|
export { __iconNode$hm as __iconNode, Puzzle as default };
|
|
}
|
|
|
|
declare const __iconNode$hl: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_proportions {
|
|
export { __iconNode$hl as __iconNode, Proportions as default };
|
|
}
|
|
|
|
declare const __iconNode$hk: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_projector {
|
|
export { __iconNode$hk as __iconNode, Projector as default };
|
|
}
|
|
|
|
declare const __iconNode$hj: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_printer {
|
|
export { __iconNode$hj as __iconNode, Printer as default };
|
|
}
|
|
|
|
declare const __iconNode$hi: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_printer_check {
|
|
export { __iconNode$hi as __iconNode, PrinterCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$hh: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_presentation {
|
|
export { __iconNode$hh as __iconNode, Presentation as default };
|
|
}
|
|
|
|
declare const __iconNode$hg: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_power {
|
|
export { __iconNode$hg as __iconNode, Power as default };
|
|
}
|
|
|
|
declare const __iconNode$hf: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_power_off {
|
|
export { __iconNode$hf as __iconNode, PowerOff as default };
|
|
}
|
|
|
|
declare const __iconNode$he: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pound_sterling {
|
|
export { __iconNode$he as __iconNode, PoundSterling as default };
|
|
}
|
|
|
|
declare const __iconNode$hd: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_popsicle {
|
|
export { __iconNode$hd as __iconNode, Popsicle as default };
|
|
}
|
|
|
|
declare const __iconNode$hc: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_popcorn {
|
|
export { __iconNode$hc as __iconNode, Popcorn as default };
|
|
}
|
|
|
|
declare const __iconNode$hb: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pointer {
|
|
export { __iconNode$hb as __iconNode, Pointer as default };
|
|
}
|
|
|
|
declare const __iconNode$ha: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pointer_off {
|
|
export { __iconNode$ha as __iconNode, PointerOff as default };
|
|
}
|
|
|
|
declare const __iconNode$h9: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_podcast {
|
|
export { __iconNode$h9 as __iconNode, Podcast as default };
|
|
}
|
|
|
|
declare const __iconNode$h8: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pocket {
|
|
export { __iconNode$h8 as __iconNode, Pocket as default };
|
|
}
|
|
|
|
declare const __iconNode$h7: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pocket_knife {
|
|
export { __iconNode$h7 as __iconNode, PocketKnife as default };
|
|
}
|
|
|
|
declare const __iconNode$h6: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_plus {
|
|
export { __iconNode$h6 as __iconNode, Plus as default };
|
|
}
|
|
|
|
declare const __iconNode$h5: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_plug {
|
|
export { __iconNode$h5 as __iconNode, Plug as default };
|
|
}
|
|
|
|
declare const __iconNode$h4: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_plug_zap {
|
|
export { __iconNode$h4 as __iconNode, PlugZap as default };
|
|
}
|
|
|
|
declare const __iconNode$h3: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_plug_2 {
|
|
export { __iconNode$h3 as __iconNode, Plug2 as default };
|
|
}
|
|
|
|
declare const __iconNode$h2: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_play {
|
|
export { __iconNode$h2 as __iconNode, Play as default };
|
|
}
|
|
|
|
declare const __iconNode$h1: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_plane {
|
|
export { __iconNode$h1 as __iconNode, Plane as default };
|
|
}
|
|
|
|
declare const __iconNode$h0: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_plane_takeoff {
|
|
export { __iconNode$h0 as __iconNode, PlaneTakeoff as default };
|
|
}
|
|
|
|
declare const __iconNode$g$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_plane_landing {
|
|
export { __iconNode$g$ as __iconNode, PlaneLanding as default };
|
|
}
|
|
|
|
declare const __iconNode$g_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pizza {
|
|
export { __iconNode$g_ as __iconNode, Pizza as default };
|
|
}
|
|
|
|
declare const __iconNode$gZ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pipette {
|
|
export { __iconNode$gZ as __iconNode, Pipette as default };
|
|
}
|
|
|
|
declare const __iconNode$gY: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pin {
|
|
export { __iconNode$gY as __iconNode, Pin as default };
|
|
}
|
|
|
|
declare const __iconNode$gX: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pin_off {
|
|
export { __iconNode$gX as __iconNode, PinOff as default };
|
|
}
|
|
|
|
declare const __iconNode$gW: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pill {
|
|
export { __iconNode$gW as __iconNode, Pill as default };
|
|
}
|
|
|
|
declare const __iconNode$gV: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pill_bottle {
|
|
export { __iconNode$gV as __iconNode, PillBottle as default };
|
|
}
|
|
|
|
declare const __iconNode$gU: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pilcrow {
|
|
export { __iconNode$gU as __iconNode, Pilcrow as default };
|
|
}
|
|
|
|
declare const __iconNode$gT: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pilcrow_right {
|
|
export { __iconNode$gT as __iconNode, PilcrowRight as default };
|
|
}
|
|
|
|
declare const __iconNode$gS: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pilcrow_left {
|
|
export { __iconNode$gS as __iconNode, PilcrowLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$gR: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_piggy_bank {
|
|
export { __iconNode$gR as __iconNode, PiggyBank as default };
|
|
}
|
|
|
|
declare const __iconNode$gQ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_picture_in_picture {
|
|
export { __iconNode$gQ as __iconNode, PictureInPicture as default };
|
|
}
|
|
|
|
declare const __iconNode$gP: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_picture_in_picture_2 {
|
|
export { __iconNode$gP as __iconNode, PictureInPicture2 as default };
|
|
}
|
|
|
|
declare const __iconNode$gO: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pickaxe {
|
|
export { __iconNode$gO as __iconNode, Pickaxe as default };
|
|
}
|
|
|
|
declare const __iconNode$gN: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_piano {
|
|
export { __iconNode$gN as __iconNode, Piano as default };
|
|
}
|
|
|
|
declare const __iconNode$gM: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pi {
|
|
export { __iconNode$gM as __iconNode, Pi as default };
|
|
}
|
|
|
|
declare const __iconNode$gL: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_phone {
|
|
export { __iconNode$gL as __iconNode, Phone as default };
|
|
}
|
|
|
|
declare const __iconNode$gK: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_phone_outgoing {
|
|
export { __iconNode$gK as __iconNode, PhoneOutgoing as default };
|
|
}
|
|
|
|
declare const __iconNode$gJ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_phone_off {
|
|
export { __iconNode$gJ as __iconNode, PhoneOff as default };
|
|
}
|
|
|
|
declare const __iconNode$gI: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_phone_missed {
|
|
export { __iconNode$gI as __iconNode, PhoneMissed as default };
|
|
}
|
|
|
|
declare const __iconNode$gH: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_phone_incoming {
|
|
export { __iconNode$gH as __iconNode, PhoneIncoming as default };
|
|
}
|
|
|
|
declare const __iconNode$gG: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_phone_forwarded {
|
|
export { __iconNode$gG as __iconNode, PhoneForwarded as default };
|
|
}
|
|
|
|
declare const __iconNode$gF: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_phone_call {
|
|
export { __iconNode$gF as __iconNode, PhoneCall as default };
|
|
}
|
|
|
|
declare const __iconNode$gE: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_philippine_peso {
|
|
export { __iconNode$gE as __iconNode, PhilippinePeso as default };
|
|
}
|
|
|
|
declare const __iconNode$gD: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_person_standing {
|
|
export { __iconNode$gD as __iconNode, PersonStanding as default };
|
|
}
|
|
|
|
declare const __iconNode$gC: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_percent {
|
|
export { __iconNode$gC as __iconNode, Percent as default };
|
|
}
|
|
|
|
declare const __iconNode$gB: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pentagon {
|
|
export { __iconNode$gB as __iconNode, Pentagon as default };
|
|
}
|
|
|
|
declare const __iconNode$gA: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pencil {
|
|
export { __iconNode$gA as __iconNode, Pencil as default };
|
|
}
|
|
|
|
declare const __iconNode$gz: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pencil_ruler {
|
|
export { __iconNode$gz as __iconNode, PencilRuler as default };
|
|
}
|
|
|
|
declare const __iconNode$gy: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pencil_off {
|
|
export { __iconNode$gy as __iconNode, PencilOff as default };
|
|
}
|
|
|
|
declare const __iconNode$gx: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pencil_line {
|
|
export { __iconNode$gx as __iconNode, PencilLine as default };
|
|
}
|
|
|
|
declare const __iconNode$gw: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pen {
|
|
export { __iconNode$gw as __iconNode, Pen as default };
|
|
}
|
|
|
|
declare const __iconNode$gv: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pen_tool {
|
|
export { __iconNode$gv as __iconNode, PenTool as default };
|
|
}
|
|
|
|
declare const __iconNode$gu: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pen_off {
|
|
export { __iconNode$gu as __iconNode, PenOff as default };
|
|
}
|
|
|
|
declare const __iconNode$gt: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pen_line {
|
|
export { __iconNode$gt as __iconNode, PenLine as default };
|
|
}
|
|
|
|
declare const __iconNode$gs: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pc_case {
|
|
export { __iconNode$gs as __iconNode, PcCase as default };
|
|
}
|
|
|
|
declare const __iconNode$gr: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_paw_print {
|
|
export { __iconNode$gr as __iconNode, PawPrint as default };
|
|
}
|
|
|
|
declare const __iconNode$gq: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_pause {
|
|
export { __iconNode$gq as __iconNode, Pause as default };
|
|
}
|
|
|
|
declare const __iconNode$gp: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_party_popper {
|
|
export { __iconNode$gp as __iconNode, PartyPopper as default };
|
|
}
|
|
|
|
declare const __iconNode$go: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_parking_meter {
|
|
export { __iconNode$go as __iconNode, ParkingMeter as default };
|
|
}
|
|
|
|
declare const __iconNode$gn: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_parentheses {
|
|
export { __iconNode$gn as __iconNode, Parentheses as default };
|
|
}
|
|
|
|
declare const __iconNode$gm: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_paperclip {
|
|
export { __iconNode$gm as __iconNode, Paperclip as default };
|
|
}
|
|
|
|
declare const __iconNode$gl: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panels_top_left {
|
|
export { __iconNode$gl as __iconNode, PanelsTopLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$gk: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panels_right_bottom {
|
|
export { __iconNode$gk as __iconNode, PanelsRightBottom as default };
|
|
}
|
|
|
|
declare const __iconNode$gj: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panels_left_bottom {
|
|
export { __iconNode$gj as __iconNode, PanelsLeftBottom as default };
|
|
}
|
|
|
|
declare const __iconNode$gi: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panel_top {
|
|
export { __iconNode$gi as __iconNode, PanelTop as default };
|
|
}
|
|
|
|
declare const __iconNode$gh: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panel_top_open {
|
|
export { __iconNode$gh as __iconNode, PanelTopOpen as default };
|
|
}
|
|
|
|
declare const __iconNode$gg: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panel_top_dashed {
|
|
export { __iconNode$gg as __iconNode, PanelTopDashed as default };
|
|
}
|
|
|
|
declare const __iconNode$gf: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panel_top_close {
|
|
export { __iconNode$gf as __iconNode, PanelTopClose as default };
|
|
}
|
|
|
|
declare const __iconNode$ge: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panel_right {
|
|
export { __iconNode$ge as __iconNode, PanelRight as default };
|
|
}
|
|
|
|
declare const __iconNode$gd: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panel_right_open {
|
|
export { __iconNode$gd as __iconNode, PanelRightOpen as default };
|
|
}
|
|
|
|
declare const __iconNode$gc: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panel_right_dashed {
|
|
export { __iconNode$gc as __iconNode, PanelRightDashed as default };
|
|
}
|
|
|
|
declare const __iconNode$gb: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panel_right_close {
|
|
export { __iconNode$gb as __iconNode, PanelRightClose as default };
|
|
}
|
|
|
|
declare const __iconNode$ga: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panel_left {
|
|
export { __iconNode$ga as __iconNode, PanelLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$g9: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panel_left_open {
|
|
export { __iconNode$g9 as __iconNode, PanelLeftOpen as default };
|
|
}
|
|
|
|
declare const __iconNode$g8: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panel_left_dashed {
|
|
export { __iconNode$g8 as __iconNode, PanelLeftDashed as default };
|
|
}
|
|
|
|
declare const __iconNode$g7: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panel_left_close {
|
|
export { __iconNode$g7 as __iconNode, PanelLeftClose as default };
|
|
}
|
|
|
|
declare const __iconNode$g6: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panel_bottom {
|
|
export { __iconNode$g6 as __iconNode, PanelBottom as default };
|
|
}
|
|
|
|
declare const __iconNode$g5: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panel_bottom_open {
|
|
export { __iconNode$g5 as __iconNode, PanelBottomOpen as default };
|
|
}
|
|
|
|
declare const __iconNode$g4: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panel_bottom_dashed {
|
|
export { __iconNode$g4 as __iconNode, PanelBottomDashed as default };
|
|
}
|
|
|
|
declare const __iconNode$g3: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_panel_bottom_close {
|
|
export { __iconNode$g3 as __iconNode, PanelBottomClose as default };
|
|
}
|
|
|
|
declare const __iconNode$g2: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_palette {
|
|
export { __iconNode$g2 as __iconNode, Palette as default };
|
|
}
|
|
|
|
declare const __iconNode$g1: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_paintbrush {
|
|
export { __iconNode$g1 as __iconNode, Paintbrush as default };
|
|
}
|
|
|
|
declare const __iconNode$g0: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_paintbrush_vertical {
|
|
export { __iconNode$g0 as __iconNode, PaintbrushVertical as default };
|
|
}
|
|
|
|
declare const __iconNode$f$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_paint_roller {
|
|
export { __iconNode$f$ as __iconNode, PaintRoller as default };
|
|
}
|
|
|
|
declare const __iconNode$f_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_paint_bucket {
|
|
export { __iconNode$f_ as __iconNode, PaintBucket as default };
|
|
}
|
|
|
|
declare const __iconNode$fZ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_package {
|
|
export { __iconNode$fZ as __iconNode, Package as default };
|
|
}
|
|
|
|
declare const __iconNode$fY: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_package_x {
|
|
export { __iconNode$fY as __iconNode, PackageX as default };
|
|
}
|
|
|
|
declare const __iconNode$fX: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_package_search {
|
|
export { __iconNode$fX as __iconNode, PackageSearch as default };
|
|
}
|
|
|
|
declare const __iconNode$fW: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_package_plus {
|
|
export { __iconNode$fW as __iconNode, PackagePlus as default };
|
|
}
|
|
|
|
declare const __iconNode$fV: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_package_open {
|
|
export { __iconNode$fV as __iconNode, PackageOpen as default };
|
|
}
|
|
|
|
declare const __iconNode$fU: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_package_minus {
|
|
export { __iconNode$fU as __iconNode, PackageMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$fT: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_package_check {
|
|
export { __iconNode$fT as __iconNode, PackageCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$fS: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_package_2 {
|
|
export { __iconNode$fS as __iconNode, Package2 as default };
|
|
}
|
|
|
|
declare const __iconNode$fR: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_origami {
|
|
export { __iconNode$fR as __iconNode, Origami as default };
|
|
}
|
|
|
|
declare const __iconNode$fQ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_orbit {
|
|
export { __iconNode$fQ as __iconNode, Orbit as default };
|
|
}
|
|
|
|
declare const __iconNode$fP: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_option {
|
|
export { __iconNode$fP as __iconNode, Option as default };
|
|
}
|
|
|
|
declare const __iconNode$fO: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_omega {
|
|
export { __iconNode$fO as __iconNode, Omega as default };
|
|
}
|
|
|
|
declare const __iconNode$fN: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_octagon {
|
|
export { __iconNode$fN as __iconNode, Octagon as default };
|
|
}
|
|
|
|
declare const __iconNode$fM: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_octagon_x {
|
|
export { __iconNode$fM as __iconNode, OctagonX as default };
|
|
}
|
|
|
|
declare const __iconNode$fL: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_octagon_pause {
|
|
export { __iconNode$fL as __iconNode, OctagonPause as default };
|
|
}
|
|
|
|
declare const __iconNode$fK: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_octagon_minus {
|
|
export { __iconNode$fK as __iconNode, OctagonMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$fJ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_octagon_alert {
|
|
export { __iconNode$fJ as __iconNode, OctagonAlert as default };
|
|
}
|
|
|
|
declare const __iconNode$fI: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_nut {
|
|
export { __iconNode$fI as __iconNode, Nut as default };
|
|
}
|
|
|
|
declare const __iconNode$fH: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_nut_off {
|
|
export { __iconNode$fH as __iconNode, NutOff as default };
|
|
}
|
|
|
|
declare const __iconNode$fG: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_notepad_text {
|
|
export { __iconNode$fG as __iconNode, NotepadText as default };
|
|
}
|
|
|
|
declare const __iconNode$fF: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_notepad_text_dashed {
|
|
export { __iconNode$fF as __iconNode, NotepadTextDashed as default };
|
|
}
|
|
|
|
declare const __iconNode$fE: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_notebook {
|
|
export { __iconNode$fE as __iconNode, Notebook as default };
|
|
}
|
|
|
|
declare const __iconNode$fD: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_notebook_text {
|
|
export { __iconNode$fD as __iconNode, NotebookText as default };
|
|
}
|
|
|
|
declare const __iconNode$fC: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_notebook_tabs {
|
|
export { __iconNode$fC as __iconNode, NotebookTabs as default };
|
|
}
|
|
|
|
declare const __iconNode$fB: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_notebook_pen {
|
|
export { __iconNode$fB as __iconNode, NotebookPen as default };
|
|
}
|
|
|
|
declare const __iconNode$fA: IconNode;
|
|
/**
|
|
* @component @name NonBinary
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/non-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 NonBinary: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_non_binary {
|
|
export { __iconNode$fA as __iconNode, NonBinary as default };
|
|
}
|
|
|
|
declare const __iconNode$fz: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_nfc {
|
|
export { __iconNode$fz as __iconNode, Nfc as default };
|
|
}
|
|
|
|
declare const __iconNode$fy: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_newspaper {
|
|
export { __iconNode$fy as __iconNode, Newspaper as default };
|
|
}
|
|
|
|
declare const __iconNode$fx: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_network {
|
|
export { __iconNode$fx as __iconNode, Network as default };
|
|
}
|
|
|
|
declare const __iconNode$fw: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_navigation {
|
|
export { __iconNode$fw as __iconNode, Navigation as default };
|
|
}
|
|
|
|
declare const __iconNode$fv: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_navigation_off {
|
|
export { __iconNode$fv as __iconNode, NavigationOff as default };
|
|
}
|
|
|
|
declare const __iconNode$fu: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_navigation_2 {
|
|
export { __iconNode$fu as __iconNode, Navigation2 as default };
|
|
}
|
|
|
|
declare const __iconNode$ft: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_navigation_2_off {
|
|
export { __iconNode$ft as __iconNode, Navigation2Off as default };
|
|
}
|
|
|
|
declare const __iconNode$fs: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_music {
|
|
export { __iconNode$fs as __iconNode, Music as default };
|
|
}
|
|
|
|
declare const __iconNode$fr: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_music_4 {
|
|
export { __iconNode$fr as __iconNode, Music4 as default };
|
|
}
|
|
|
|
declare const __iconNode$fq: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_music_3 {
|
|
export { __iconNode$fq as __iconNode, Music3 as default };
|
|
}
|
|
|
|
declare const __iconNode$fp: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_music_2 {
|
|
export { __iconNode$fp as __iconNode, Music2 as default };
|
|
}
|
|
|
|
declare const __iconNode$fo: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_move {
|
|
export { __iconNode$fo as __iconNode, Move as default };
|
|
}
|
|
|
|
declare const __iconNode$fn: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_move_vertical {
|
|
export { __iconNode$fn as __iconNode, MoveVertical as default };
|
|
}
|
|
|
|
declare const __iconNode$fm: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_move_up {
|
|
export { __iconNode$fm as __iconNode, MoveUp as default };
|
|
}
|
|
|
|
declare const __iconNode$fl: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_move_up_right {
|
|
export { __iconNode$fl as __iconNode, MoveUpRight as default };
|
|
}
|
|
|
|
declare const __iconNode$fk: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_move_up_left {
|
|
export { __iconNode$fk as __iconNode, MoveUpLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$fj: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_move_right {
|
|
export { __iconNode$fj as __iconNode, MoveRight as default };
|
|
}
|
|
|
|
declare const __iconNode$fi: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_move_left {
|
|
export { __iconNode$fi as __iconNode, MoveLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$fh: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_move_horizontal {
|
|
export { __iconNode$fh as __iconNode, MoveHorizontal as default };
|
|
}
|
|
|
|
declare const __iconNode$fg: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_move_down {
|
|
export { __iconNode$fg as __iconNode, MoveDown as default };
|
|
}
|
|
|
|
declare const __iconNode$ff: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_move_down_right {
|
|
export { __iconNode$ff as __iconNode, MoveDownRight as default };
|
|
}
|
|
|
|
declare const __iconNode$fe: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_move_down_left {
|
|
export { __iconNode$fe as __iconNode, MoveDownLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$fd: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_move_diagonal {
|
|
export { __iconNode$fd as __iconNode, MoveDiagonal as default };
|
|
}
|
|
|
|
declare const __iconNode$fc: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_move_diagonal_2 {
|
|
export { __iconNode$fc as __iconNode, MoveDiagonal2 as default };
|
|
}
|
|
|
|
declare const __iconNode$fb: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_move_3d {
|
|
export { __iconNode$fb as __iconNode, Move3d as default };
|
|
}
|
|
|
|
declare const __iconNode$fa: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mouse {
|
|
export { __iconNode$fa as __iconNode, Mouse as default };
|
|
}
|
|
|
|
declare const __iconNode$f9: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mouse_pointer {
|
|
export { __iconNode$f9 as __iconNode, MousePointer as default };
|
|
}
|
|
|
|
declare const __iconNode$f8: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mouse_pointer_click {
|
|
export { __iconNode$f8 as __iconNode, MousePointerClick as default };
|
|
}
|
|
|
|
declare const __iconNode$f7: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mouse_pointer_ban {
|
|
export { __iconNode$f7 as __iconNode, MousePointerBan as default };
|
|
}
|
|
|
|
declare const __iconNode$f6: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mouse_pointer_2 {
|
|
export { __iconNode$f6 as __iconNode, MousePointer2 as default };
|
|
}
|
|
|
|
declare const __iconNode$f5: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mouse_off {
|
|
export { __iconNode$f5 as __iconNode, MouseOff as default };
|
|
}
|
|
|
|
declare const __iconNode$f4: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mountain {
|
|
export { __iconNode$f4 as __iconNode, Mountain as default };
|
|
}
|
|
|
|
declare const __iconNode$f3: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mountain_snow {
|
|
export { __iconNode$f3 as __iconNode, MountainSnow as default };
|
|
}
|
|
|
|
declare const __iconNode$f2: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_moon {
|
|
export { __iconNode$f2 as __iconNode, Moon as default };
|
|
}
|
|
|
|
declare const __iconNode$f1: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_moon_star {
|
|
export { __iconNode$f1 as __iconNode, MoonStar as default };
|
|
}
|
|
|
|
declare const __iconNode$f0: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_monitor {
|
|
export { __iconNode$f0 as __iconNode, Monitor as default };
|
|
}
|
|
|
|
declare const __iconNode$e$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_monitor_x {
|
|
export { __iconNode$e$ as __iconNode, MonitorX as default };
|
|
}
|
|
|
|
declare const __iconNode$e_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_monitor_up {
|
|
export { __iconNode$e_ as __iconNode, MonitorUp as default };
|
|
}
|
|
|
|
declare const __iconNode$eZ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_monitor_stop {
|
|
export { __iconNode$eZ as __iconNode, MonitorStop as default };
|
|
}
|
|
|
|
declare const __iconNode$eY: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_monitor_speaker {
|
|
export { __iconNode$eY as __iconNode, MonitorSpeaker as default };
|
|
}
|
|
|
|
declare const __iconNode$eX: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_monitor_smartphone {
|
|
export { __iconNode$eX as __iconNode, MonitorSmartphone as default };
|
|
}
|
|
|
|
declare const __iconNode$eW: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_monitor_play {
|
|
export { __iconNode$eW as __iconNode, MonitorPlay as default };
|
|
}
|
|
|
|
declare const __iconNode$eV: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_monitor_pause {
|
|
export { __iconNode$eV as __iconNode, MonitorPause as default };
|
|
}
|
|
|
|
declare const __iconNode$eU: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_monitor_off {
|
|
export { __iconNode$eU as __iconNode, MonitorOff as default };
|
|
}
|
|
|
|
declare const __iconNode$eT: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_monitor_down {
|
|
export { __iconNode$eT as __iconNode, MonitorDown as default };
|
|
}
|
|
|
|
declare const __iconNode$eS: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_monitor_dot {
|
|
export { __iconNode$eS as __iconNode, MonitorDot as default };
|
|
}
|
|
|
|
declare const __iconNode$eR: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_monitor_cog {
|
|
export { __iconNode$eR as __iconNode, MonitorCog as default };
|
|
}
|
|
|
|
declare const __iconNode$eQ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_monitor_check {
|
|
export { __iconNode$eQ as __iconNode, MonitorCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$eP: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_minus {
|
|
export { __iconNode$eP as __iconNode, Minus as default };
|
|
}
|
|
|
|
declare const __iconNode$eO: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_minimize {
|
|
export { __iconNode$eO as __iconNode, Minimize as default };
|
|
}
|
|
|
|
declare const __iconNode$eN: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_minimize_2 {
|
|
export { __iconNode$eN as __iconNode, Minimize2 as default };
|
|
}
|
|
|
|
declare const __iconNode$eM: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_milk {
|
|
export { __iconNode$eM as __iconNode, Milk as default };
|
|
}
|
|
|
|
declare const __iconNode$eL: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_milk_off {
|
|
export { __iconNode$eL as __iconNode, MilkOff as default };
|
|
}
|
|
|
|
declare const __iconNode$eK: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_milestone {
|
|
export { __iconNode$eK as __iconNode, Milestone as default };
|
|
}
|
|
|
|
declare const __iconNode$eJ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_microwave {
|
|
export { __iconNode$eJ as __iconNode, Microwave as default };
|
|
}
|
|
|
|
declare const __iconNode$eI: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_microscope {
|
|
export { __iconNode$eI as __iconNode, Microscope as default };
|
|
}
|
|
|
|
declare const __iconNode$eH: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_microchip {
|
|
export { __iconNode$eH as __iconNode, Microchip as default };
|
|
}
|
|
|
|
declare const __iconNode$eG: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mic {
|
|
export { __iconNode$eG as __iconNode, Mic as default };
|
|
}
|
|
|
|
declare const __iconNode$eF: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mic_vocal {
|
|
export { __iconNode$eF as __iconNode, MicVocal as default };
|
|
}
|
|
|
|
declare const __iconNode$eE: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mic_off {
|
|
export { __iconNode$eE as __iconNode, MicOff as default };
|
|
}
|
|
|
|
declare const __iconNode$eD: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_messages_square {
|
|
export { __iconNode$eD as __iconNode, MessagesSquare as default };
|
|
}
|
|
|
|
declare const __iconNode$eC: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_square {
|
|
export { __iconNode$eC as __iconNode, MessageSquare as default };
|
|
}
|
|
|
|
declare const __iconNode$eB: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_square_x {
|
|
export { __iconNode$eB as __iconNode, MessageSquareX as default };
|
|
}
|
|
|
|
declare const __iconNode$eA: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_square_warning {
|
|
export { __iconNode$eA as __iconNode, MessageSquareWarning as default };
|
|
}
|
|
|
|
declare const __iconNode$ez: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_square_text {
|
|
export { __iconNode$ez as __iconNode, MessageSquareText as default };
|
|
}
|
|
|
|
declare const __iconNode$ey: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_square_share {
|
|
export { __iconNode$ey as __iconNode, MessageSquareShare as default };
|
|
}
|
|
|
|
declare const __iconNode$ex: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_square_reply {
|
|
export { __iconNode$ex as __iconNode, MessageSquareReply as default };
|
|
}
|
|
|
|
declare const __iconNode$ew: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_square_quote {
|
|
export { __iconNode$ew as __iconNode, MessageSquareQuote as default };
|
|
}
|
|
|
|
declare const __iconNode$ev: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_square_plus {
|
|
export { __iconNode$ev as __iconNode, MessageSquarePlus as default };
|
|
}
|
|
|
|
declare const __iconNode$eu: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_square_off {
|
|
export { __iconNode$eu as __iconNode, MessageSquareOff as default };
|
|
}
|
|
|
|
declare const __iconNode$et: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_square_more {
|
|
export { __iconNode$et as __iconNode, MessageSquareMore as default };
|
|
}
|
|
|
|
declare const __iconNode$es: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_square_lock {
|
|
export { __iconNode$es as __iconNode, MessageSquareLock as default };
|
|
}
|
|
|
|
declare const __iconNode$er: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_square_heart {
|
|
export { __iconNode$er as __iconNode, MessageSquareHeart as default };
|
|
}
|
|
|
|
declare const __iconNode$eq: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_square_dot {
|
|
export { __iconNode$eq as __iconNode, MessageSquareDot as default };
|
|
}
|
|
|
|
declare const __iconNode$ep: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_square_diff {
|
|
export { __iconNode$ep as __iconNode, MessageSquareDiff as default };
|
|
}
|
|
|
|
declare const __iconNode$eo: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_square_dashed {
|
|
export { __iconNode$eo as __iconNode, MessageSquareDashed as default };
|
|
}
|
|
|
|
declare const __iconNode$en: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_square_code {
|
|
export { __iconNode$en as __iconNode, MessageSquareCode as default };
|
|
}
|
|
|
|
declare const __iconNode$em: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_circle {
|
|
export { __iconNode$em as __iconNode, MessageCircle as default };
|
|
}
|
|
|
|
declare const __iconNode$el: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_circle_x {
|
|
export { __iconNode$el as __iconNode, MessageCircleX as default };
|
|
}
|
|
|
|
declare const __iconNode$ek: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_circle_warning {
|
|
export { __iconNode$ek as __iconNode, MessageCircleWarning as default };
|
|
}
|
|
|
|
declare const __iconNode$ej: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_circle_reply {
|
|
export { __iconNode$ej as __iconNode, MessageCircleReply as default };
|
|
}
|
|
|
|
declare const __iconNode$ei: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_circle_question {
|
|
export { __iconNode$ei as __iconNode, MessageCircleQuestion as default };
|
|
}
|
|
|
|
declare const __iconNode$eh: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_circle_plus {
|
|
export { __iconNode$eh as __iconNode, MessageCirclePlus as default };
|
|
}
|
|
|
|
declare const __iconNode$eg: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_circle_off {
|
|
export { __iconNode$eg as __iconNode, MessageCircleOff as default };
|
|
}
|
|
|
|
declare const __iconNode$ef: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_circle_more {
|
|
export { __iconNode$ef as __iconNode, MessageCircleMore as default };
|
|
}
|
|
|
|
declare const __iconNode$ee: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_circle_heart {
|
|
export { __iconNode$ee as __iconNode, MessageCircleHeart as default };
|
|
}
|
|
|
|
declare const __iconNode$ed: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_circle_dashed {
|
|
export { __iconNode$ed as __iconNode, MessageCircleDashed as default };
|
|
}
|
|
|
|
declare const __iconNode$ec: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_message_circle_code {
|
|
export { __iconNode$ec as __iconNode, MessageCircleCode as default };
|
|
}
|
|
|
|
declare const __iconNode$eb: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_merge {
|
|
export { __iconNode$eb as __iconNode, Merge as default };
|
|
}
|
|
|
|
declare const __iconNode$ea: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_menu {
|
|
export { __iconNode$ea as __iconNode, Menu as default };
|
|
}
|
|
|
|
declare const __iconNode$e9: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_memory_stick {
|
|
export { __iconNode$e9 as __iconNode, MemoryStick as default };
|
|
}
|
|
|
|
declare const __iconNode$e8: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_meh {
|
|
export { __iconNode$e8 as __iconNode, Meh as default };
|
|
}
|
|
|
|
declare const __iconNode$e7: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_megaphone {
|
|
export { __iconNode$e7 as __iconNode, Megaphone as default };
|
|
}
|
|
|
|
declare const __iconNode$e6: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_megaphone_off {
|
|
export { __iconNode$e6 as __iconNode, MegaphoneOff as default };
|
|
}
|
|
|
|
declare const __iconNode$e5: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_medal {
|
|
export { __iconNode$e5 as __iconNode, Medal as default };
|
|
}
|
|
|
|
declare const __iconNode$e4: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_maximize {
|
|
export { __iconNode$e4 as __iconNode, Maximize as default };
|
|
}
|
|
|
|
declare const __iconNode$e3: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_maximize_2 {
|
|
export { __iconNode$e3 as __iconNode, Maximize2 as default };
|
|
}
|
|
|
|
declare const __iconNode$e2: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_martini {
|
|
export { __iconNode$e2 as __iconNode, Martini as default };
|
|
}
|
|
|
|
declare const __iconNode$e1: IconNode;
|
|
/**
|
|
* @component @name Mars
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/mars
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
|
*
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
* @returns {JSX.Element} JSX Element
|
|
*
|
|
*/
|
|
declare const Mars: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_mars {
|
|
export { __iconNode$e1 as __iconNode, Mars as default };
|
|
}
|
|
|
|
declare const __iconNode$e0: IconNode;
|
|
/**
|
|
* @component @name MarsStroke
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/mars-stroke
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
|
*
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
* @returns {JSX.Element} JSX Element
|
|
*
|
|
*/
|
|
declare const MarsStroke: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_mars_stroke {
|
|
export { __iconNode$e0 as __iconNode, MarsStroke as default };
|
|
}
|
|
|
|
declare const __iconNode$d$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_map {
|
|
export { __iconNode$d$ as __iconNode, Map as default };
|
|
}
|
|
|
|
declare const __iconNode$d_: IconNode;
|
|
/**
|
|
* @component @name MapPlus
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/map-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 MapPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_map_plus {
|
|
export { __iconNode$d_ as __iconNode, MapPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$dZ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_map_pinned {
|
|
export { __iconNode$dZ as __iconNode, MapPinned as default };
|
|
}
|
|
|
|
declare const __iconNode$dY: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_map_pin {
|
|
export { __iconNode$dY as __iconNode, MapPin as default };
|
|
}
|
|
|
|
declare const __iconNode$dX: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_map_pin_x {
|
|
export { __iconNode$dX as __iconNode, MapPinX as default };
|
|
}
|
|
|
|
declare const __iconNode$dW: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_map_pin_x_inside {
|
|
export { __iconNode$dW as __iconNode, MapPinXInside as default };
|
|
}
|
|
|
|
declare const __iconNode$dV: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_map_pin_plus {
|
|
export { __iconNode$dV as __iconNode, MapPinPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$dU: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_map_pin_plus_inside {
|
|
export { __iconNode$dU as __iconNode, MapPinPlusInside as default };
|
|
}
|
|
|
|
declare const __iconNode$dT: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_map_pin_off {
|
|
export { __iconNode$dT as __iconNode, MapPinOff as default };
|
|
}
|
|
|
|
declare const __iconNode$dS: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_map_pin_minus {
|
|
export { __iconNode$dS as __iconNode, MapPinMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$dR: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_map_pin_minus_inside {
|
|
export { __iconNode$dR as __iconNode, MapPinMinusInside as default };
|
|
}
|
|
|
|
declare const __iconNode$dQ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_map_pin_house {
|
|
export { __iconNode$dQ as __iconNode, MapPinHouse as default };
|
|
}
|
|
|
|
declare const __iconNode$dP: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_map_pin_check {
|
|
export { __iconNode$dP as __iconNode, MapPinCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$dO: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_map_pin_check_inside {
|
|
export { __iconNode$dO as __iconNode, MapPinCheckInside as default };
|
|
}
|
|
|
|
declare const __iconNode$dN: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mails {
|
|
export { __iconNode$dN as __iconNode, Mails as default };
|
|
}
|
|
|
|
declare const __iconNode$dM: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mailbox {
|
|
export { __iconNode$dM as __iconNode, Mailbox as default };
|
|
}
|
|
|
|
declare const __iconNode$dL: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mail {
|
|
export { __iconNode$dL as __iconNode, Mail as default };
|
|
}
|
|
|
|
declare const __iconNode$dK: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mail_x {
|
|
export { __iconNode$dK as __iconNode, MailX as default };
|
|
}
|
|
|
|
declare const __iconNode$dJ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mail_warning {
|
|
export { __iconNode$dJ as __iconNode, MailWarning as default };
|
|
}
|
|
|
|
declare const __iconNode$dI: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mail_search {
|
|
export { __iconNode$dI as __iconNode, MailSearch as default };
|
|
}
|
|
|
|
declare const __iconNode$dH: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mail_question {
|
|
export { __iconNode$dH as __iconNode, MailQuestion as default };
|
|
}
|
|
|
|
declare const __iconNode$dG: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mail_plus {
|
|
export { __iconNode$dG as __iconNode, MailPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$dF: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mail_open {
|
|
export { __iconNode$dF as __iconNode, MailOpen as default };
|
|
}
|
|
|
|
declare const __iconNode$dE: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mail_minus {
|
|
export { __iconNode$dE as __iconNode, MailMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$dD: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_mail_check {
|
|
export { __iconNode$dD as __iconNode, MailCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$dC: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_magnet {
|
|
export { __iconNode$dC as __iconNode, Magnet as default };
|
|
}
|
|
|
|
declare const __iconNode$dB: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_luggage {
|
|
export { __iconNode$dB as __iconNode, Luggage as default };
|
|
}
|
|
|
|
declare const __iconNode$dA: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_lollipop {
|
|
export { __iconNode$dA as __iconNode, Lollipop as default };
|
|
}
|
|
|
|
declare const __iconNode$dz: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_logs {
|
|
export { __iconNode$dz as __iconNode, Logs as default };
|
|
}
|
|
|
|
declare const __iconNode$dy: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_log_out {
|
|
export { __iconNode$dy as __iconNode, LogOut as default };
|
|
}
|
|
|
|
declare const __iconNode$dx: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_log_in {
|
|
export { __iconNode$dx as __iconNode, LogIn as default };
|
|
}
|
|
|
|
declare const __iconNode$dw: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_lock {
|
|
export { __iconNode$dw as __iconNode, Lock as default };
|
|
}
|
|
|
|
declare const __iconNode$dv: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_lock_open {
|
|
export { __iconNode$dv as __iconNode, LockOpen as default };
|
|
}
|
|
|
|
declare const __iconNode$du: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_lock_keyhole {
|
|
export { __iconNode$du as __iconNode, LockKeyhole as default };
|
|
}
|
|
|
|
declare const __iconNode$dt: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_lock_keyhole_open {
|
|
export { __iconNode$dt as __iconNode, LockKeyholeOpen as default };
|
|
}
|
|
|
|
declare const __iconNode$ds: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_locate {
|
|
export { __iconNode$ds as __iconNode, Locate as default };
|
|
}
|
|
|
|
declare const __iconNode$dr: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_locate_off {
|
|
export { __iconNode$dr as __iconNode, LocateOff as default };
|
|
}
|
|
|
|
declare const __iconNode$dq: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_locate_fixed {
|
|
export { __iconNode$dq as __iconNode, LocateFixed as default };
|
|
}
|
|
|
|
declare const __iconNode$dp: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_loader {
|
|
export { __iconNode$dp as __iconNode, Loader as default };
|
|
}
|
|
|
|
declare const __iconNode$do: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_loader_pinwheel {
|
|
export { __iconNode$do as __iconNode, LoaderPinwheel as default };
|
|
}
|
|
|
|
declare const __iconNode$dn: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_loader_circle {
|
|
export { __iconNode$dn as __iconNode, LoaderCircle as default };
|
|
}
|
|
|
|
declare const __iconNode$dm: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_list {
|
|
export { __iconNode$dm as __iconNode, List as default };
|
|
}
|
|
|
|
declare const __iconNode$dl: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_list_x {
|
|
export { __iconNode$dl as __iconNode, ListX as default };
|
|
}
|
|
|
|
declare const __iconNode$dk: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_list_video {
|
|
export { __iconNode$dk as __iconNode, ListVideo as default };
|
|
}
|
|
|
|
declare const __iconNode$dj: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_list_tree {
|
|
export { __iconNode$dj as __iconNode, ListTree as default };
|
|
}
|
|
|
|
declare const __iconNode$di: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_list_todo {
|
|
export { __iconNode$di as __iconNode, ListTodo as default };
|
|
}
|
|
|
|
declare const __iconNode$dh: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_list_start {
|
|
export { __iconNode$dh as __iconNode, ListStart as default };
|
|
}
|
|
|
|
declare const __iconNode$dg: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_list_restart {
|
|
export { __iconNode$dg as __iconNode, ListRestart as default };
|
|
}
|
|
|
|
declare const __iconNode$df: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_list_plus {
|
|
export { __iconNode$df as __iconNode, ListPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$de: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_list_ordered {
|
|
export { __iconNode$de as __iconNode, ListOrdered as default };
|
|
}
|
|
|
|
declare const __iconNode$dd: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_list_music {
|
|
export { __iconNode$dd as __iconNode, ListMusic as default };
|
|
}
|
|
|
|
declare const __iconNode$dc: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_list_minus {
|
|
export { __iconNode$dc as __iconNode, ListMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$db: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_list_filter {
|
|
export { __iconNode$db as __iconNode, ListFilter as default };
|
|
}
|
|
|
|
declare const __iconNode$da: IconNode;
|
|
/**
|
|
* @component @name ListFilterPlus
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/list-filter-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 ListFilterPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_list_filter_plus {
|
|
export { __iconNode$da as __iconNode, ListFilterPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$d9: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_list_end {
|
|
export { __iconNode$d9 as __iconNode, ListEnd as default };
|
|
}
|
|
|
|
declare const __iconNode$d8: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_list_collapse {
|
|
export { __iconNode$d8 as __iconNode, ListCollapse as default };
|
|
}
|
|
|
|
declare const __iconNode$d7: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_list_checks {
|
|
export { __iconNode$d7 as __iconNode, ListChecks as default };
|
|
}
|
|
|
|
declare const __iconNode$d6: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_list_check {
|
|
export { __iconNode$d6 as __iconNode, ListCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$d5: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_linkedin {
|
|
export { __iconNode$d5 as __iconNode, Linkedin as default };
|
|
}
|
|
|
|
declare const __iconNode$d4: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_link {
|
|
export { __iconNode$d4 as __iconNode, Link as default };
|
|
}
|
|
|
|
declare const __iconNode$d3: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_link_2 {
|
|
export { __iconNode$d3 as __iconNode, Link2 as default };
|
|
}
|
|
|
|
declare const __iconNode$d2: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_link_2_off {
|
|
export { __iconNode$d2 as __iconNode, Link2Off as default };
|
|
}
|
|
|
|
declare const __iconNode$d1: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_lightbulb {
|
|
export { __iconNode$d1 as __iconNode, Lightbulb as default };
|
|
}
|
|
|
|
declare const __iconNode$d0: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_lightbulb_off {
|
|
export { __iconNode$d0 as __iconNode, LightbulbOff as default };
|
|
}
|
|
|
|
declare const __iconNode$c$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ligature {
|
|
export { __iconNode$c$ as __iconNode, Ligature as default };
|
|
}
|
|
|
|
declare const __iconNode$c_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_life_buoy {
|
|
export { __iconNode$c_ as __iconNode, LifeBuoy as default };
|
|
}
|
|
|
|
declare const __iconNode$cZ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_library {
|
|
export { __iconNode$cZ as __iconNode, Library as default };
|
|
}
|
|
|
|
declare const __iconNode$cY: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_library_big {
|
|
export { __iconNode$cY as __iconNode, LibraryBig as default };
|
|
}
|
|
|
|
declare const __iconNode$cX: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_letter_text {
|
|
export { __iconNode$cX as __iconNode, LetterText as default };
|
|
}
|
|
|
|
declare const __iconNode$cW: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_lectern {
|
|
export { __iconNode$cW as __iconNode, Lectern as default };
|
|
}
|
|
|
|
declare const __iconNode$cV: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_leafy_green {
|
|
export { __iconNode$cV as __iconNode, LeafyGreen as default };
|
|
}
|
|
|
|
declare const __iconNode$cU: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_leaf {
|
|
export { __iconNode$cU as __iconNode, Leaf as default };
|
|
}
|
|
|
|
declare const __iconNode$cT: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_layout_template {
|
|
export { __iconNode$cT as __iconNode, LayoutTemplate as default };
|
|
}
|
|
|
|
declare const __iconNode$cS: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_layout_panel_top {
|
|
export { __iconNode$cS as __iconNode, LayoutPanelTop as default };
|
|
}
|
|
|
|
declare const __iconNode$cR: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_layout_panel_left {
|
|
export { __iconNode$cR as __iconNode, LayoutPanelLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$cQ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_layout_list {
|
|
export { __iconNode$cQ as __iconNode, LayoutList as default };
|
|
}
|
|
|
|
declare const __iconNode$cP: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_layout_grid {
|
|
export { __iconNode$cP as __iconNode, LayoutGrid as default };
|
|
}
|
|
|
|
declare const __iconNode$cO: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_layout_dashboard {
|
|
export { __iconNode$cO as __iconNode, LayoutDashboard as default };
|
|
}
|
|
|
|
declare const __iconNode$cN: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_layers {
|
|
export { __iconNode$cN as __iconNode, Layers as default };
|
|
}
|
|
|
|
declare const __iconNode$cM: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_layers_2 {
|
|
export { __iconNode$cM as __iconNode, Layers2 as default };
|
|
}
|
|
|
|
declare const __iconNode$cL: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_laugh {
|
|
export { __iconNode$cL as __iconNode, Laugh as default };
|
|
}
|
|
|
|
declare const __iconNode$cK: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_lasso {
|
|
export { __iconNode$cK as __iconNode, Lasso as default };
|
|
}
|
|
|
|
declare const __iconNode$cJ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_lasso_select {
|
|
export { __iconNode$cJ as __iconNode, LassoSelect as default };
|
|
}
|
|
|
|
declare const __iconNode$cI: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_laptop {
|
|
export { __iconNode$cI as __iconNode, Laptop as default };
|
|
}
|
|
|
|
declare const __iconNode$cH: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_laptop_minimal {
|
|
export { __iconNode$cH as __iconNode, LaptopMinimal as default };
|
|
}
|
|
|
|
declare const __iconNode$cG: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_laptop_minimal_check {
|
|
export { __iconNode$cG as __iconNode, LaptopMinimalCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$cF: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_languages {
|
|
export { __iconNode$cF as __iconNode, Languages as default };
|
|
}
|
|
|
|
declare const __iconNode$cE: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_landmark {
|
|
export { __iconNode$cE as __iconNode, Landmark as default };
|
|
}
|
|
|
|
declare const __iconNode$cD: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_land_plot {
|
|
export { __iconNode$cD as __iconNode, LandPlot as default };
|
|
}
|
|
|
|
declare const __iconNode$cC: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_lamp {
|
|
export { __iconNode$cC as __iconNode, Lamp as default };
|
|
}
|
|
|
|
declare const __iconNode$cB: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_lamp_wall_up {
|
|
export { __iconNode$cB as __iconNode, LampWallUp as default };
|
|
}
|
|
|
|
declare const __iconNode$cA: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_lamp_wall_down {
|
|
export { __iconNode$cA as __iconNode, LampWallDown as default };
|
|
}
|
|
|
|
declare const __iconNode$cz: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_lamp_floor {
|
|
export { __iconNode$cz as __iconNode, LampFloor as default };
|
|
}
|
|
|
|
declare const __iconNode$cy: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_lamp_desk {
|
|
export { __iconNode$cy as __iconNode, LampDesk as default };
|
|
}
|
|
|
|
declare const __iconNode$cx: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_lamp_ceiling {
|
|
export { __iconNode$cx as __iconNode, LampCeiling as default };
|
|
}
|
|
|
|
declare const __iconNode$cw: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_keyboard {
|
|
export { __iconNode$cw as __iconNode, Keyboard as default };
|
|
}
|
|
|
|
declare const __iconNode$cv: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_keyboard_off {
|
|
export { __iconNode$cv as __iconNode, KeyboardOff as default };
|
|
}
|
|
|
|
declare const __iconNode$cu: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_keyboard_music {
|
|
export { __iconNode$cu as __iconNode, KeyboardMusic as default };
|
|
}
|
|
|
|
declare const __iconNode$ct: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_key {
|
|
export { __iconNode$ct as __iconNode, Key as default };
|
|
}
|
|
|
|
declare const __iconNode$cs: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_key_square {
|
|
export { __iconNode$cs as __iconNode, KeySquare as default };
|
|
}
|
|
|
|
declare const __iconNode$cr: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_key_round {
|
|
export { __iconNode$cr as __iconNode, KeyRound as default };
|
|
}
|
|
|
|
declare const __iconNode$cq: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_kanban {
|
|
export { __iconNode$cq as __iconNode, Kanban as default };
|
|
}
|
|
|
|
declare const __iconNode$cp: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_joystick {
|
|
export { __iconNode$cp as __iconNode, Joystick as default };
|
|
}
|
|
|
|
declare const __iconNode$co: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_japanese_yen {
|
|
export { __iconNode$co as __iconNode, JapaneseYen as default };
|
|
}
|
|
|
|
declare const __iconNode$cn: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_iteration_cw {
|
|
export { __iconNode$cn as __iconNode, IterationCw as default };
|
|
}
|
|
|
|
declare const __iconNode$cm: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_iteration_ccw {
|
|
export { __iconNode$cm as __iconNode, IterationCcw as default };
|
|
}
|
|
|
|
declare const __iconNode$cl: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_italic {
|
|
export { __iconNode$cl as __iconNode, Italic as default };
|
|
}
|
|
|
|
declare const __iconNode$ck: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_instagram {
|
|
export { __iconNode$ck as __iconNode, Instagram as default };
|
|
}
|
|
|
|
declare const __iconNode$cj: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_inspection_panel {
|
|
export { __iconNode$cj as __iconNode, InspectionPanel as default };
|
|
}
|
|
|
|
declare const __iconNode$ci: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_info {
|
|
export { __iconNode$ci as __iconNode, Info as default };
|
|
}
|
|
|
|
declare const __iconNode$ch: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_infinity {
|
|
export { __iconNode$ch as __iconNode, Infinity as default };
|
|
}
|
|
|
|
declare const __iconNode$cg: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_indian_rupee {
|
|
export { __iconNode$cg as __iconNode, IndianRupee as default };
|
|
}
|
|
|
|
declare const __iconNode$cf: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_indent_increase {
|
|
export { __iconNode$cf as __iconNode, IndentIncrease as default };
|
|
}
|
|
|
|
declare const __iconNode$ce: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_indent_decrease {
|
|
export { __iconNode$ce as __iconNode, IndentDecrease as default };
|
|
}
|
|
|
|
declare const __iconNode$cd: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_inbox {
|
|
export { __iconNode$cd as __iconNode, Inbox as default };
|
|
}
|
|
|
|
declare const __iconNode$cc: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_import {
|
|
export { __iconNode$cc as __iconNode, Import as default };
|
|
}
|
|
|
|
declare const __iconNode$cb: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_images {
|
|
export { __iconNode$cb as __iconNode, Images as default };
|
|
}
|
|
|
|
declare const __iconNode$ca: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_image {
|
|
export { __iconNode$ca as __iconNode, Image as default };
|
|
}
|
|
|
|
declare const __iconNode$c9: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_image_upscale {
|
|
export { __iconNode$c9 as __iconNode, ImageUpscale as default };
|
|
}
|
|
|
|
declare const __iconNode$c8: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_image_up {
|
|
export { __iconNode$c8 as __iconNode, ImageUp as default };
|
|
}
|
|
|
|
declare const __iconNode$c7: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_image_plus {
|
|
export { __iconNode$c7 as __iconNode, ImagePlus as default };
|
|
}
|
|
|
|
declare const __iconNode$c6: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_image_play {
|
|
export { __iconNode$c6 as __iconNode, ImagePlay as default };
|
|
}
|
|
|
|
declare const __iconNode$c5: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_image_off {
|
|
export { __iconNode$c5 as __iconNode, ImageOff as default };
|
|
}
|
|
|
|
declare const __iconNode$c4: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_image_minus {
|
|
export { __iconNode$c4 as __iconNode, ImageMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$c3: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_image_down {
|
|
export { __iconNode$c3 as __iconNode, ImageDown as default };
|
|
}
|
|
|
|
declare const __iconNode$c2: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_id_card {
|
|
export { __iconNode$c2 as __iconNode, IdCard as default };
|
|
}
|
|
|
|
declare const __iconNode$c1: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ice_cream_cone {
|
|
export { __iconNode$c1 as __iconNode, IceCreamCone as default };
|
|
}
|
|
|
|
declare const __iconNode$c0: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ice_cream_bowl {
|
|
export { __iconNode$c0 as __iconNode, IceCreamBowl as default };
|
|
}
|
|
|
|
declare const __iconNode$b$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_house {
|
|
export { __iconNode$b$ as __iconNode, House as default };
|
|
}
|
|
|
|
declare const __iconNode$b_: IconNode;
|
|
/**
|
|
* @component @name HouseWifi
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/house-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 HouseWifi: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_house_wifi {
|
|
export { __iconNode$b_ as __iconNode, HouseWifi as default };
|
|
}
|
|
|
|
declare const __iconNode$bZ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_house_plus {
|
|
export { __iconNode$bZ as __iconNode, HousePlus as default };
|
|
}
|
|
|
|
declare const __iconNode$bY: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_house_plug {
|
|
export { __iconNode$bY as __iconNode, HousePlug as default };
|
|
}
|
|
|
|
declare const __iconNode$bX: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hourglass {
|
|
export { __iconNode$bX as __iconNode, Hourglass as default };
|
|
}
|
|
|
|
declare const __iconNode$bW: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hotel {
|
|
export { __iconNode$bW as __iconNode, Hotel as default };
|
|
}
|
|
|
|
declare const __iconNode$bV: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hospital {
|
|
export { __iconNode$bV as __iconNode, Hospital as default };
|
|
}
|
|
|
|
declare const __iconNode$bU: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hop {
|
|
export { __iconNode$bU as __iconNode, Hop as default };
|
|
}
|
|
|
|
declare const __iconNode$bT: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hop_off {
|
|
export { __iconNode$bT as __iconNode, HopOff as default };
|
|
}
|
|
|
|
declare const __iconNode$bS: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_history {
|
|
export { __iconNode$bS as __iconNode, History as default };
|
|
}
|
|
|
|
declare const __iconNode$bR: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_highlighter {
|
|
export { __iconNode$bR as __iconNode, Highlighter as default };
|
|
}
|
|
|
|
declare const __iconNode$bQ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hexagon {
|
|
export { __iconNode$bQ as __iconNode, Hexagon as default };
|
|
}
|
|
|
|
declare const __iconNode$bP: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_heater {
|
|
export { __iconNode$bP as __iconNode, Heater as default };
|
|
}
|
|
|
|
declare const __iconNode$bO: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_heart {
|
|
export { __iconNode$bO as __iconNode, Heart as default };
|
|
}
|
|
|
|
declare const __iconNode$bN: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_heart_pulse {
|
|
export { __iconNode$bN as __iconNode, HeartPulse as default };
|
|
}
|
|
|
|
declare const __iconNode$bM: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_heart_off {
|
|
export { __iconNode$bM as __iconNode, HeartOff as default };
|
|
}
|
|
|
|
declare const __iconNode$bL: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_heart_handshake {
|
|
export { __iconNode$bL as __iconNode, HeartHandshake as default };
|
|
}
|
|
|
|
declare const __iconNode$bK: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_heart_crack {
|
|
export { __iconNode$bK as __iconNode, HeartCrack as default };
|
|
}
|
|
|
|
declare const __iconNode$bJ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_headset {
|
|
export { __iconNode$bJ as __iconNode, Headset as default };
|
|
}
|
|
|
|
declare const __iconNode$bI: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_headphones {
|
|
export { __iconNode$bI as __iconNode, Headphones as default };
|
|
}
|
|
|
|
declare const __iconNode$bH: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_headphone_off {
|
|
export { __iconNode$bH as __iconNode, HeadphoneOff as default };
|
|
}
|
|
|
|
declare const __iconNode$bG: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_heading {
|
|
export { __iconNode$bG as __iconNode, Heading as default };
|
|
}
|
|
|
|
declare const __iconNode$bF: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_heading_6 {
|
|
export { __iconNode$bF as __iconNode, Heading6 as default };
|
|
}
|
|
|
|
declare const __iconNode$bE: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_heading_5 {
|
|
export { __iconNode$bE as __iconNode, Heading5 as default };
|
|
}
|
|
|
|
declare const __iconNode$bD: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_heading_4 {
|
|
export { __iconNode$bD as __iconNode, Heading4 as default };
|
|
}
|
|
|
|
declare const __iconNode$bC: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_heading_3 {
|
|
export { __iconNode$bC as __iconNode, Heading3 as default };
|
|
}
|
|
|
|
declare const __iconNode$bB: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_heading_2 {
|
|
export { __iconNode$bB as __iconNode, Heading2 as default };
|
|
}
|
|
|
|
declare const __iconNode$bA: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_heading_1 {
|
|
export { __iconNode$bA as __iconNode, Heading1 as default };
|
|
}
|
|
|
|
declare const __iconNode$bz: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hdmi_port {
|
|
export { __iconNode$bz as __iconNode, HdmiPort as default };
|
|
}
|
|
|
|
declare const __iconNode$by: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_haze {
|
|
export { __iconNode$by as __iconNode, Haze as default };
|
|
}
|
|
|
|
declare const __iconNode$bx: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hash {
|
|
export { __iconNode$bx as __iconNode, Hash as default };
|
|
}
|
|
|
|
declare const __iconNode$bw: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hard_hat {
|
|
export { __iconNode$bw as __iconNode, HardHat as default };
|
|
}
|
|
|
|
declare const __iconNode$bv: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hard_drive {
|
|
export { __iconNode$bv as __iconNode, HardDrive as default };
|
|
}
|
|
|
|
declare const __iconNode$bu: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hard_drive_upload {
|
|
export { __iconNode$bu as __iconNode, HardDriveUpload as default };
|
|
}
|
|
|
|
declare const __iconNode$bt: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hard_drive_download {
|
|
export { __iconNode$bt as __iconNode, HardDriveDownload as default };
|
|
}
|
|
|
|
declare const __iconNode$bs: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_handshake {
|
|
export { __iconNode$bs as __iconNode, Handshake as default };
|
|
}
|
|
|
|
declare const __iconNode$br: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hand {
|
|
export { __iconNode$br as __iconNode, Hand as default };
|
|
}
|
|
|
|
declare const __iconNode$bq: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hand_platter {
|
|
export { __iconNode$bq as __iconNode, HandPlatter as default };
|
|
}
|
|
|
|
declare const __iconNode$bp: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hand_metal {
|
|
export { __iconNode$bp as __iconNode, HandMetal as default };
|
|
}
|
|
|
|
declare const __iconNode$bo: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hand_helping {
|
|
export { __iconNode$bo as __iconNode, HandHelping as default };
|
|
}
|
|
|
|
declare const __iconNode$bn: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hand_heart {
|
|
export { __iconNode$bn as __iconNode, HandHeart as default };
|
|
}
|
|
|
|
declare const __iconNode$bm: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hand_coins {
|
|
export { __iconNode$bm as __iconNode, HandCoins as default };
|
|
}
|
|
|
|
declare const __iconNode$bl: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_hammer {
|
|
export { __iconNode$bl as __iconNode, Hammer as default };
|
|
}
|
|
|
|
declare const __iconNode$bk: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ham {
|
|
export { __iconNode$bk as __iconNode, Ham as default };
|
|
}
|
|
|
|
declare const __iconNode$bj: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_guitar {
|
|
export { __iconNode$bj as __iconNode, Guitar as default };
|
|
}
|
|
|
|
declare const __iconNode$bi: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_group {
|
|
export { __iconNode$bi as __iconNode, Group as default };
|
|
}
|
|
|
|
declare const __iconNode$bh: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_grip {
|
|
export { __iconNode$bh as __iconNode, Grip as default };
|
|
}
|
|
|
|
declare const __iconNode$bg: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_grip_vertical {
|
|
export { __iconNode$bg as __iconNode, GripVertical as default };
|
|
}
|
|
|
|
declare const __iconNode$bf: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_grip_horizontal {
|
|
export { __iconNode$bf as __iconNode, GripHorizontal as default };
|
|
}
|
|
|
|
declare const __iconNode$be: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_grid_3x3 {
|
|
export { __iconNode$be as __iconNode, Grid3x3 as default };
|
|
}
|
|
|
|
declare const __iconNode$bd: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_grid_2x2 {
|
|
export { __iconNode$bd as __iconNode, Grid2x2 as default };
|
|
}
|
|
|
|
declare const __iconNode$bc: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_grid_2x2_x {
|
|
export { __iconNode$bc as __iconNode, Grid2x2X as default };
|
|
}
|
|
|
|
declare const __iconNode$bb: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_grid_2x2_plus {
|
|
export { __iconNode$bb as __iconNode, Grid2x2Plus as default };
|
|
}
|
|
|
|
declare const __iconNode$ba: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_grid_2x2_check {
|
|
export { __iconNode$ba as __iconNode, Grid2x2Check as default };
|
|
}
|
|
|
|
declare const __iconNode$b9: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_grape {
|
|
export { __iconNode$b9 as __iconNode, Grape as default };
|
|
}
|
|
|
|
declare const __iconNode$b8: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_graduation_cap {
|
|
export { __iconNode$b8 as __iconNode, GraduationCap as default };
|
|
}
|
|
|
|
declare const __iconNode$b7: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_grab {
|
|
export { __iconNode$b7 as __iconNode, Grab as default };
|
|
}
|
|
|
|
declare const __iconNode$b6: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_goal {
|
|
export { __iconNode$b6 as __iconNode, Goal as default };
|
|
}
|
|
|
|
declare const __iconNode$b5: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_globe {
|
|
export { __iconNode$b5 as __iconNode, Globe as default };
|
|
}
|
|
|
|
declare const __iconNode$b4: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_globe_lock {
|
|
export { __iconNode$b4 as __iconNode, GlobeLock as default };
|
|
}
|
|
|
|
declare const __iconNode$b3: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_glasses {
|
|
export { __iconNode$b3 as __iconNode, Glasses as default };
|
|
}
|
|
|
|
declare const __iconNode$b2: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_glass_water {
|
|
export { __iconNode$b2 as __iconNode, GlassWater as default };
|
|
}
|
|
|
|
declare const __iconNode$b1: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_gitlab {
|
|
export { __iconNode$b1 as __iconNode, Gitlab as default };
|
|
}
|
|
|
|
declare const __iconNode$b0: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_github {
|
|
export { __iconNode$b0 as __iconNode, Github as default };
|
|
}
|
|
|
|
declare const __iconNode$a$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_git_pull_request {
|
|
export { __iconNode$a$ as __iconNode, GitPullRequest as default };
|
|
}
|
|
|
|
declare const __iconNode$a_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_git_pull_request_draft {
|
|
export { __iconNode$a_ as __iconNode, GitPullRequestDraft as default };
|
|
}
|
|
|
|
declare const __iconNode$aZ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_git_pull_request_create {
|
|
export { __iconNode$aZ as __iconNode, GitPullRequestCreate as default };
|
|
}
|
|
|
|
declare const __iconNode$aY: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_git_pull_request_create_arrow {
|
|
export { __iconNode$aY as __iconNode, GitPullRequestCreateArrow as default };
|
|
}
|
|
|
|
declare const __iconNode$aX: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_git_pull_request_closed {
|
|
export { __iconNode$aX as __iconNode, GitPullRequestClosed as default };
|
|
}
|
|
|
|
declare const __iconNode$aW: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_git_pull_request_arrow {
|
|
export { __iconNode$aW as __iconNode, GitPullRequestArrow as default };
|
|
}
|
|
|
|
declare const __iconNode$aV: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_git_merge {
|
|
export { __iconNode$aV as __iconNode, GitMerge as default };
|
|
}
|
|
|
|
declare const __iconNode$aU: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_git_graph {
|
|
export { __iconNode$aU as __iconNode, GitGraph as default };
|
|
}
|
|
|
|
declare const __iconNode$aT: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_git_fork {
|
|
export { __iconNode$aT as __iconNode, GitFork as default };
|
|
}
|
|
|
|
declare const __iconNode$aS: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_git_compare {
|
|
export { __iconNode$aS as __iconNode, GitCompare as default };
|
|
}
|
|
|
|
declare const __iconNode$aR: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_git_compare_arrows {
|
|
export { __iconNode$aR as __iconNode, GitCompareArrows as default };
|
|
}
|
|
|
|
declare const __iconNode$aQ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_git_commit_vertical {
|
|
export { __iconNode$aQ as __iconNode, GitCommitVertical as default };
|
|
}
|
|
|
|
declare const __iconNode$aP: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_git_commit_horizontal {
|
|
export { __iconNode$aP as __iconNode, GitCommitHorizontal as default };
|
|
}
|
|
|
|
declare const __iconNode$aO: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_git_branch {
|
|
export { __iconNode$aO as __iconNode, GitBranch as default };
|
|
}
|
|
|
|
declare const __iconNode$aN: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_git_branch_plus {
|
|
export { __iconNode$aN as __iconNode, GitBranchPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$aM: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_gift {
|
|
export { __iconNode$aM as __iconNode, Gift as default };
|
|
}
|
|
|
|
declare const __iconNode$aL: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ghost {
|
|
export { __iconNode$aL as __iconNode, Ghost as default };
|
|
}
|
|
|
|
declare const __iconNode$aK: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_gem {
|
|
export { __iconNode$aK as __iconNode, Gem as default };
|
|
}
|
|
|
|
declare const __iconNode$aJ: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_gavel {
|
|
export { __iconNode$aJ as __iconNode, Gavel as default };
|
|
}
|
|
|
|
declare const __iconNode$aI: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_gauge {
|
|
export { __iconNode$aI as __iconNode, Gauge as default };
|
|
}
|
|
|
|
declare const __iconNode$aH: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_gamepad {
|
|
export { __iconNode$aH as __iconNode, Gamepad as default };
|
|
}
|
|
|
|
declare const __iconNode$aG: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_gamepad_2 {
|
|
export { __iconNode$aG as __iconNode, Gamepad2 as default };
|
|
}
|
|
|
|
declare const __iconNode$aF: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_gallery_vertical {
|
|
export { __iconNode$aF as __iconNode, GalleryVertical as default };
|
|
}
|
|
|
|
declare const __iconNode$aE: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_gallery_vertical_end {
|
|
export { __iconNode$aE as __iconNode, GalleryVerticalEnd as default };
|
|
}
|
|
|
|
declare const __iconNode$aD: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_gallery_thumbnails {
|
|
export { __iconNode$aD as __iconNode, GalleryThumbnails as default };
|
|
}
|
|
|
|
declare const __iconNode$aC: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_gallery_horizontal {
|
|
export { __iconNode$aC as __iconNode, GalleryHorizontal as default };
|
|
}
|
|
|
|
declare const __iconNode$aB: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_gallery_horizontal_end {
|
|
export { __iconNode$aB as __iconNode, GalleryHorizontalEnd as default };
|
|
}
|
|
|
|
declare const __iconNode$aA: IconNode;
|
|
/**
|
|
* @component @name Funnel
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/funnel
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
|
*
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
* @returns {JSX.Element} JSX Element
|
|
*
|
|
*/
|
|
declare const Funnel: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_funnel {
|
|
export { __iconNode$aA as __iconNode, Funnel as default };
|
|
}
|
|
|
|
declare const __iconNode$az: IconNode;
|
|
/**
|
|
* @component @name FunnelX
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/funnel-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 FunnelX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_funnel_x {
|
|
export { __iconNode$az as __iconNode, FunnelX as default };
|
|
}
|
|
|
|
declare const __iconNode$ay: IconNode;
|
|
/**
|
|
* @component @name FunnelPlus
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/funnel-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 FunnelPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_funnel_plus {
|
|
export { __iconNode$ay as __iconNode, FunnelPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$ax: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_fullscreen {
|
|
export { __iconNode$ax as __iconNode, Fullscreen as default };
|
|
}
|
|
|
|
declare const __iconNode$aw: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_fuel {
|
|
export { __iconNode$aw as __iconNode, Fuel as default };
|
|
}
|
|
|
|
declare const __iconNode$av: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_frown {
|
|
export { __iconNode$av as __iconNode, Frown as default };
|
|
}
|
|
|
|
declare const __iconNode$au: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_framer {
|
|
export { __iconNode$au as __iconNode, Framer as default };
|
|
}
|
|
|
|
declare const __iconNode$at: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_frame {
|
|
export { __iconNode$at as __iconNode, Frame as default };
|
|
}
|
|
|
|
declare const __iconNode$as: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_forward {
|
|
export { __iconNode$as as __iconNode, Forward as default };
|
|
}
|
|
|
|
declare const __iconNode$ar: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_forklift {
|
|
export { __iconNode$ar as __iconNode, Forklift as default };
|
|
}
|
|
|
|
declare const __iconNode$aq: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_footprints {
|
|
export { __iconNode$aq as __iconNode, Footprints as default };
|
|
}
|
|
|
|
declare const __iconNode$ap: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folders {
|
|
export { __iconNode$ap as __iconNode, Folders as default };
|
|
}
|
|
|
|
declare const __iconNode$ao: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder {
|
|
export { __iconNode$ao as __iconNode, Folder as default };
|
|
}
|
|
|
|
declare const __iconNode$an: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_x {
|
|
export { __iconNode$an as __iconNode, FolderX as default };
|
|
}
|
|
|
|
declare const __iconNode$am: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_up {
|
|
export { __iconNode$am as __iconNode, FolderUp as default };
|
|
}
|
|
|
|
declare const __iconNode$al: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_tree {
|
|
export { __iconNode$al as __iconNode, FolderTree as default };
|
|
}
|
|
|
|
declare const __iconNode$ak: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_sync {
|
|
export { __iconNode$ak as __iconNode, FolderSync as default };
|
|
}
|
|
|
|
declare const __iconNode$aj: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_symlink {
|
|
export { __iconNode$aj as __iconNode, FolderSymlink as default };
|
|
}
|
|
|
|
declare const __iconNode$ai: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_search {
|
|
export { __iconNode$ai as __iconNode, FolderSearch as default };
|
|
}
|
|
|
|
declare const __iconNode$ah: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_search_2 {
|
|
export { __iconNode$ah as __iconNode, FolderSearch2 as default };
|
|
}
|
|
|
|
declare const __iconNode$ag: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_root {
|
|
export { __iconNode$ag as __iconNode, FolderRoot as default };
|
|
}
|
|
|
|
declare const __iconNode$af: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_plus {
|
|
export { __iconNode$af as __iconNode, FolderPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$ae: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_pen {
|
|
export { __iconNode$ae as __iconNode, FolderPen as default };
|
|
}
|
|
|
|
declare const __iconNode$ad: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_output {
|
|
export { __iconNode$ad as __iconNode, FolderOutput as default };
|
|
}
|
|
|
|
declare const __iconNode$ac: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_open {
|
|
export { __iconNode$ac as __iconNode, FolderOpen as default };
|
|
}
|
|
|
|
declare const __iconNode$ab: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_open_dot {
|
|
export { __iconNode$ab as __iconNode, FolderOpenDot as default };
|
|
}
|
|
|
|
declare const __iconNode$aa: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_minus {
|
|
export { __iconNode$aa as __iconNode, FolderMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$a9: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_lock {
|
|
export { __iconNode$a9 as __iconNode, FolderLock as default };
|
|
}
|
|
|
|
declare const __iconNode$a8: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_key {
|
|
export { __iconNode$a8 as __iconNode, FolderKey as default };
|
|
}
|
|
|
|
declare const __iconNode$a7: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_kanban {
|
|
export { __iconNode$a7 as __iconNode, FolderKanban as default };
|
|
}
|
|
|
|
declare const __iconNode$a6: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_input {
|
|
export { __iconNode$a6 as __iconNode, FolderInput as default };
|
|
}
|
|
|
|
declare const __iconNode$a5: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_heart {
|
|
export { __iconNode$a5 as __iconNode, FolderHeart as default };
|
|
}
|
|
|
|
declare const __iconNode$a4: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_git {
|
|
export { __iconNode$a4 as __iconNode, FolderGit as default };
|
|
}
|
|
|
|
declare const __iconNode$a3: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_git_2 {
|
|
export { __iconNode$a3 as __iconNode, FolderGit2 as default };
|
|
}
|
|
|
|
declare const __iconNode$a2: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_down {
|
|
export { __iconNode$a2 as __iconNode, FolderDown as default };
|
|
}
|
|
|
|
declare const __iconNode$a1: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_dot {
|
|
export { __iconNode$a1 as __iconNode, FolderDot as default };
|
|
}
|
|
|
|
declare const __iconNode$a0: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_cog {
|
|
export { __iconNode$a0 as __iconNode, FolderCog as default };
|
|
}
|
|
|
|
declare const __iconNode$9$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_code {
|
|
export { __iconNode$9$ as __iconNode, FolderCode as default };
|
|
}
|
|
|
|
declare const __iconNode$9_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_closed {
|
|
export { __iconNode$9_ as __iconNode, FolderClosed as default };
|
|
}
|
|
|
|
declare const __iconNode$9Z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_clock {
|
|
export { __iconNode$9Z as __iconNode, FolderClock as default };
|
|
}
|
|
|
|
declare const __iconNode$9Y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_check {
|
|
export { __iconNode$9Y as __iconNode, FolderCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$9X: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_folder_archive {
|
|
export { __iconNode$9X as __iconNode, FolderArchive as default };
|
|
}
|
|
|
|
declare const __iconNode$9W: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_fold_vertical {
|
|
export { __iconNode$9W as __iconNode, FoldVertical as default };
|
|
}
|
|
|
|
declare const __iconNode$9V: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_fold_horizontal {
|
|
export { __iconNode$9V as __iconNode, FoldHorizontal as default };
|
|
}
|
|
|
|
declare const __iconNode$9U: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_focus {
|
|
export { __iconNode$9U as __iconNode, Focus as default };
|
|
}
|
|
|
|
declare const __iconNode$9T: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_flower {
|
|
export { __iconNode$9T as __iconNode, Flower as default };
|
|
}
|
|
|
|
declare const __iconNode$9S: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_flower_2 {
|
|
export { __iconNode$9S as __iconNode, Flower2 as default };
|
|
}
|
|
|
|
declare const __iconNode$9R: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_flip_vertical {
|
|
export { __iconNode$9R as __iconNode, FlipVertical as default };
|
|
}
|
|
|
|
declare const __iconNode$9Q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_flip_vertical_2 {
|
|
export { __iconNode$9Q as __iconNode, FlipVertical2 as default };
|
|
}
|
|
|
|
declare const __iconNode$9P: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_flip_horizontal {
|
|
export { __iconNode$9P as __iconNode, FlipHorizontal as default };
|
|
}
|
|
|
|
declare const __iconNode$9O: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_flip_horizontal_2 {
|
|
export { __iconNode$9O as __iconNode, FlipHorizontal2 as default };
|
|
}
|
|
|
|
declare const __iconNode$9N: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_flask_round {
|
|
export { __iconNode$9N as __iconNode, FlaskRound as default };
|
|
}
|
|
|
|
declare const __iconNode$9M: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_flask_conical {
|
|
export { __iconNode$9M as __iconNode, FlaskConical as default };
|
|
}
|
|
|
|
declare const __iconNode$9L: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_flask_conical_off {
|
|
export { __iconNode$9L as __iconNode, FlaskConicalOff as default };
|
|
}
|
|
|
|
declare const __iconNode$9K: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_flashlight {
|
|
export { __iconNode$9K as __iconNode, Flashlight as default };
|
|
}
|
|
|
|
declare const __iconNode$9J: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_flashlight_off {
|
|
export { __iconNode$9J as __iconNode, FlashlightOff as default };
|
|
}
|
|
|
|
declare const __iconNode$9I: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_flame {
|
|
export { __iconNode$9I as __iconNode, Flame as default };
|
|
}
|
|
|
|
declare const __iconNode$9H: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_flame_kindling {
|
|
export { __iconNode$9H as __iconNode, FlameKindling as default };
|
|
}
|
|
|
|
declare const __iconNode$9G: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_flag {
|
|
export { __iconNode$9G as __iconNode, Flag as default };
|
|
}
|
|
|
|
declare const __iconNode$9F: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_flag_triangle_right {
|
|
export { __iconNode$9F as __iconNode, FlagTriangleRight as default };
|
|
}
|
|
|
|
declare const __iconNode$9E: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_flag_triangle_left {
|
|
export { __iconNode$9E as __iconNode, FlagTriangleLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$9D: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_flag_off {
|
|
export { __iconNode$9D as __iconNode, FlagOff as default };
|
|
}
|
|
|
|
declare const __iconNode$9C: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_fish {
|
|
export { __iconNode$9C as __iconNode, Fish as default };
|
|
}
|
|
|
|
declare const __iconNode$9B: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_fish_symbol {
|
|
export { __iconNode$9B as __iconNode, FishSymbol as default };
|
|
}
|
|
|
|
declare const __iconNode$9A: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_fish_off {
|
|
export { __iconNode$9A as __iconNode, FishOff as default };
|
|
}
|
|
|
|
declare const __iconNode$9z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_fire_extinguisher {
|
|
export { __iconNode$9z as __iconNode, FireExtinguisher as default };
|
|
}
|
|
|
|
declare const __iconNode$9y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_fingerprint {
|
|
export { __iconNode$9y as __iconNode, Fingerprint as default };
|
|
}
|
|
|
|
declare const __iconNode$9x: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_film {
|
|
export { __iconNode$9x as __iconNode, Film as default };
|
|
}
|
|
|
|
declare const __iconNode$9w: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_files {
|
|
export { __iconNode$9w as __iconNode, Files as default };
|
|
}
|
|
|
|
declare const __iconNode$9v: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file {
|
|
export { __iconNode$9v as __iconNode, File as default };
|
|
}
|
|
|
|
declare const __iconNode$9u: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_x {
|
|
export { __iconNode$9u as __iconNode, FileX as default };
|
|
}
|
|
|
|
declare const __iconNode$9t: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_x_2 {
|
|
export { __iconNode$9t as __iconNode, FileX2 as default };
|
|
}
|
|
|
|
declare const __iconNode$9s: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_warning {
|
|
export { __iconNode$9s as __iconNode, FileWarning as default };
|
|
}
|
|
|
|
declare const __iconNode$9r: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_volume {
|
|
export { __iconNode$9r as __iconNode, FileVolume as default };
|
|
}
|
|
|
|
declare const __iconNode$9q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_volume_2 {
|
|
export { __iconNode$9q as __iconNode, FileVolume2 as default };
|
|
}
|
|
|
|
declare const __iconNode$9p: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_video {
|
|
export { __iconNode$9p as __iconNode, FileVideo as default };
|
|
}
|
|
|
|
declare const __iconNode$9o: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_video_2 {
|
|
export { __iconNode$9o as __iconNode, FileVideo2 as default };
|
|
}
|
|
|
|
declare const __iconNode$9n: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_user {
|
|
export { __iconNode$9n as __iconNode, FileUser as default };
|
|
}
|
|
|
|
declare const __iconNode$9m: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_up {
|
|
export { __iconNode$9m as __iconNode, FileUp as default };
|
|
}
|
|
|
|
declare const __iconNode$9l: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_type {
|
|
export { __iconNode$9l as __iconNode, FileType as default };
|
|
}
|
|
|
|
declare const __iconNode$9k: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_type_2 {
|
|
export { __iconNode$9k as __iconNode, FileType2 as default };
|
|
}
|
|
|
|
declare const __iconNode$9j: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_text {
|
|
export { __iconNode$9j as __iconNode, FileText as default };
|
|
}
|
|
|
|
declare const __iconNode$9i: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_terminal {
|
|
export { __iconNode$9i as __iconNode, FileTerminal as default };
|
|
}
|
|
|
|
declare const __iconNode$9h: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_symlink {
|
|
export { __iconNode$9h as __iconNode, FileSymlink as default };
|
|
}
|
|
|
|
declare const __iconNode$9g: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_stack {
|
|
export { __iconNode$9g as __iconNode, FileStack as default };
|
|
}
|
|
|
|
declare const __iconNode$9f: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_spreadsheet {
|
|
export { __iconNode$9f as __iconNode, FileSpreadsheet as default };
|
|
}
|
|
|
|
declare const __iconNode$9e: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_sliders {
|
|
export { __iconNode$9e as __iconNode, FileSliders as default };
|
|
}
|
|
|
|
declare const __iconNode$9d: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_search {
|
|
export { __iconNode$9d as __iconNode, FileSearch as default };
|
|
}
|
|
|
|
declare const __iconNode$9c: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_search_2 {
|
|
export { __iconNode$9c as __iconNode, FileSearch2 as default };
|
|
}
|
|
|
|
declare const __iconNode$9b: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_scan {
|
|
export { __iconNode$9b as __iconNode, FileScan as default };
|
|
}
|
|
|
|
declare const __iconNode$9a: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_question {
|
|
export { __iconNode$9a as __iconNode, FileQuestion as default };
|
|
}
|
|
|
|
declare const __iconNode$99: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_plus {
|
|
export { __iconNode$99 as __iconNode, FilePlus as default };
|
|
}
|
|
|
|
declare const __iconNode$98: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_plus_2 {
|
|
export { __iconNode$98 as __iconNode, FilePlus2 as default };
|
|
}
|
|
|
|
declare const __iconNode$97: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_pen {
|
|
export { __iconNode$97 as __iconNode, FilePen as default };
|
|
}
|
|
|
|
declare const __iconNode$96: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_pen_line {
|
|
export { __iconNode$96 as __iconNode, FilePenLine as default };
|
|
}
|
|
|
|
declare const __iconNode$95: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_output {
|
|
export { __iconNode$95 as __iconNode, FileOutput as default };
|
|
}
|
|
|
|
declare const __iconNode$94: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_music {
|
|
export { __iconNode$94 as __iconNode, FileMusic as default };
|
|
}
|
|
|
|
declare const __iconNode$93: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_minus {
|
|
export { __iconNode$93 as __iconNode, FileMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$92: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_minus_2 {
|
|
export { __iconNode$92 as __iconNode, FileMinus2 as default };
|
|
}
|
|
|
|
declare const __iconNode$91: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_lock {
|
|
export { __iconNode$91 as __iconNode, FileLock as default };
|
|
}
|
|
|
|
declare const __iconNode$90: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_lock_2 {
|
|
export { __iconNode$90 as __iconNode, FileLock2 as default };
|
|
}
|
|
|
|
declare const __iconNode$8$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_key {
|
|
export { __iconNode$8$ as __iconNode, FileKey as default };
|
|
}
|
|
|
|
declare const __iconNode$8_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_key_2 {
|
|
export { __iconNode$8_ as __iconNode, FileKey2 as default };
|
|
}
|
|
|
|
declare const __iconNode$8Z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_json {
|
|
export { __iconNode$8Z as __iconNode, FileJson as default };
|
|
}
|
|
|
|
declare const __iconNode$8Y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_json_2 {
|
|
export { __iconNode$8Y as __iconNode, FileJson2 as default };
|
|
}
|
|
|
|
declare const __iconNode$8X: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_input {
|
|
export { __iconNode$8X as __iconNode, FileInput as default };
|
|
}
|
|
|
|
declare const __iconNode$8W: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_image {
|
|
export { __iconNode$8W as __iconNode, FileImage as default };
|
|
}
|
|
|
|
declare const __iconNode$8V: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_heart {
|
|
export { __iconNode$8V as __iconNode, FileHeart as default };
|
|
}
|
|
|
|
declare const __iconNode$8U: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_down {
|
|
export { __iconNode$8U as __iconNode, FileDown as default };
|
|
}
|
|
|
|
declare const __iconNode$8T: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_digit {
|
|
export { __iconNode$8T as __iconNode, FileDigit as default };
|
|
}
|
|
|
|
declare const __iconNode$8S: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_diff {
|
|
export { __iconNode$8S as __iconNode, FileDiff as default };
|
|
}
|
|
|
|
declare const __iconNode$8R: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_cog {
|
|
export { __iconNode$8R as __iconNode, FileCog as default };
|
|
}
|
|
|
|
declare const __iconNode$8Q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_code {
|
|
export { __iconNode$8Q as __iconNode, FileCode as default };
|
|
}
|
|
|
|
declare const __iconNode$8P: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_code_2 {
|
|
export { __iconNode$8P as __iconNode, FileCode2 as default };
|
|
}
|
|
|
|
declare const __iconNode$8O: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_clock {
|
|
export { __iconNode$8O as __iconNode, FileClock as default };
|
|
}
|
|
|
|
declare const __iconNode$8N: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_check {
|
|
export { __iconNode$8N as __iconNode, FileCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$8M: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_check_2 {
|
|
export { __iconNode$8M as __iconNode, FileCheck2 as default };
|
|
}
|
|
|
|
declare const __iconNode$8L: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_chart_pie {
|
|
export { __iconNode$8L as __iconNode, FileChartPie as default };
|
|
}
|
|
|
|
declare const __iconNode$8K: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_chart_line {
|
|
export { __iconNode$8K as __iconNode, FileChartLine as default };
|
|
}
|
|
|
|
declare const __iconNode$8J: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_chart_column {
|
|
export { __iconNode$8J as __iconNode, FileChartColumn as default };
|
|
}
|
|
|
|
declare const __iconNode$8I: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_chart_column_increasing {
|
|
export { __iconNode$8I as __iconNode, FileChartColumnIncreasing as default };
|
|
}
|
|
|
|
declare const __iconNode$8H: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_box {
|
|
export { __iconNode$8H as __iconNode, FileBox as default };
|
|
}
|
|
|
|
declare const __iconNode$8G: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_badge {
|
|
export { __iconNode$8G as __iconNode, FileBadge as default };
|
|
}
|
|
|
|
declare const __iconNode$8F: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_badge_2 {
|
|
export { __iconNode$8F as __iconNode, FileBadge2 as default };
|
|
}
|
|
|
|
declare const __iconNode$8E: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_axis_3d {
|
|
export { __iconNode$8E as __iconNode, FileAxis3d as default };
|
|
}
|
|
|
|
declare const __iconNode$8D: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_audio {
|
|
export { __iconNode$8D as __iconNode, FileAudio as default };
|
|
}
|
|
|
|
declare const __iconNode$8C: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_audio_2 {
|
|
export { __iconNode$8C as __iconNode, FileAudio2 as default };
|
|
}
|
|
|
|
declare const __iconNode$8B: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_file_archive {
|
|
export { __iconNode$8B as __iconNode, FileArchive as default };
|
|
}
|
|
|
|
declare const __iconNode$8A: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_figma {
|
|
export { __iconNode$8A as __iconNode, Figma as default };
|
|
}
|
|
|
|
declare const __iconNode$8z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ferris_wheel {
|
|
export { __iconNode$8z as __iconNode, FerrisWheel as default };
|
|
}
|
|
|
|
declare const __iconNode$8y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_fence {
|
|
export { __iconNode$8y as __iconNode, Fence as default };
|
|
}
|
|
|
|
declare const __iconNode$8x: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_feather {
|
|
export { __iconNode$8x as __iconNode, Feather as default };
|
|
}
|
|
|
|
declare const __iconNode$8w: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_fast_forward {
|
|
export { __iconNode$8w as __iconNode, FastForward as default };
|
|
}
|
|
|
|
declare const __iconNode$8v: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_fan {
|
|
export { __iconNode$8v as __iconNode, Fan as default };
|
|
}
|
|
|
|
declare const __iconNode$8u: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_factory {
|
|
export { __iconNode$8u as __iconNode, Factory as default };
|
|
}
|
|
|
|
declare const __iconNode$8t: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_facebook {
|
|
export { __iconNode$8t as __iconNode, Facebook as default };
|
|
}
|
|
|
|
declare const __iconNode$8s: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_eye {
|
|
export { __iconNode$8s as __iconNode, Eye as default };
|
|
}
|
|
|
|
declare const __iconNode$8r: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_eye_off {
|
|
export { __iconNode$8r as __iconNode, EyeOff as default };
|
|
}
|
|
|
|
declare const __iconNode$8q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_eye_closed {
|
|
export { __iconNode$8q as __iconNode, EyeClosed as default };
|
|
}
|
|
|
|
declare const __iconNode$8p: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_external_link {
|
|
export { __iconNode$8p as __iconNode, ExternalLink as default };
|
|
}
|
|
|
|
declare const __iconNode$8o: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_expand {
|
|
export { __iconNode$8o as __iconNode, Expand as default };
|
|
}
|
|
|
|
declare const __iconNode$8n: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_euro {
|
|
export { __iconNode$8n as __iconNode, Euro as default };
|
|
}
|
|
|
|
declare const __iconNode$8m: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ethernet_port {
|
|
export { __iconNode$8m as __iconNode, EthernetPort as default };
|
|
}
|
|
|
|
declare const __iconNode$8l: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_eraser {
|
|
export { __iconNode$8l as __iconNode, Eraser as default };
|
|
}
|
|
|
|
declare const __iconNode$8k: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_equal {
|
|
export { __iconNode$8k as __iconNode, Equal as default };
|
|
}
|
|
|
|
declare const __iconNode$8j: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_equal_not {
|
|
export { __iconNode$8j as __iconNode, EqualNot as default };
|
|
}
|
|
|
|
declare const __iconNode$8i: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_equal_approximately {
|
|
export { __iconNode$8i as __iconNode, EqualApproximately as default };
|
|
}
|
|
|
|
declare const __iconNode$8h: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ellipsis {
|
|
export { __iconNode$8h as __iconNode, Ellipsis as default };
|
|
}
|
|
|
|
declare const __iconNode$8g: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ellipsis_vertical {
|
|
export { __iconNode$8g as __iconNode, EllipsisVertical as default };
|
|
}
|
|
|
|
declare const __iconNode$8f: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_egg {
|
|
export { __iconNode$8f as __iconNode, Egg as default };
|
|
}
|
|
|
|
declare const __iconNode$8e: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_egg_off {
|
|
export { __iconNode$8e as __iconNode, EggOff as default };
|
|
}
|
|
|
|
declare const __iconNode$8d: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_egg_fried {
|
|
export { __iconNode$8d as __iconNode, EggFried as default };
|
|
}
|
|
|
|
declare const __iconNode$8c: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_eclipse {
|
|
export { __iconNode$8c as __iconNode, Eclipse as default };
|
|
}
|
|
|
|
declare const __iconNode$8b: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_earth {
|
|
export { __iconNode$8b as __iconNode, Earth as default };
|
|
}
|
|
|
|
declare const __iconNode$8a: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_earth_lock {
|
|
export { __iconNode$8a as __iconNode, EarthLock as default };
|
|
}
|
|
|
|
declare const __iconNode$89: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ear {
|
|
export { __iconNode$89 as __iconNode, Ear as default };
|
|
}
|
|
|
|
declare const __iconNode$88: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ear_off {
|
|
export { __iconNode$88 as __iconNode, EarOff as default };
|
|
}
|
|
|
|
declare const __iconNode$87: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_dumbbell {
|
|
export { __iconNode$87 as __iconNode, Dumbbell as default };
|
|
}
|
|
|
|
declare const __iconNode$86: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_drumstick {
|
|
export { __iconNode$86 as __iconNode, Drumstick as default };
|
|
}
|
|
|
|
declare const __iconNode$85: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_drum {
|
|
export { __iconNode$85 as __iconNode, Drum as default };
|
|
}
|
|
|
|
declare const __iconNode$84: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_droplets {
|
|
export { __iconNode$84 as __iconNode, Droplets as default };
|
|
}
|
|
|
|
declare const __iconNode$83: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_droplet {
|
|
export { __iconNode$83 as __iconNode, Droplet as default };
|
|
}
|
|
|
|
declare const __iconNode$82: IconNode;
|
|
/**
|
|
* @component @name DropletOff
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/droplet-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 DropletOff: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_droplet_off {
|
|
export { __iconNode$82 as __iconNode, DropletOff as default };
|
|
}
|
|
|
|
declare const __iconNode$81: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_drill {
|
|
export { __iconNode$81 as __iconNode, Drill as default };
|
|
}
|
|
|
|
declare const __iconNode$80: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_dribbble {
|
|
export { __iconNode$80 as __iconNode, Dribbble as default };
|
|
}
|
|
|
|
declare const __iconNode$7$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_drama {
|
|
export { __iconNode$7$ as __iconNode, Drama as default };
|
|
}
|
|
|
|
declare const __iconNode$7_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_drafting_compass {
|
|
export { __iconNode$7_ as __iconNode, DraftingCompass as default };
|
|
}
|
|
|
|
declare const __iconNode$7Z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_download {
|
|
export { __iconNode$7Z as __iconNode, Download as default };
|
|
}
|
|
|
|
declare const __iconNode$7Y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_dot {
|
|
export { __iconNode$7Y as __iconNode, Dot as default };
|
|
}
|
|
|
|
declare const __iconNode$7X: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_door_open {
|
|
export { __iconNode$7X as __iconNode, DoorOpen as default };
|
|
}
|
|
|
|
declare const __iconNode$7W: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_door_closed {
|
|
export { __iconNode$7W as __iconNode, DoorClosed as default };
|
|
}
|
|
|
|
declare const __iconNode$7V: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_donut {
|
|
export { __iconNode$7V as __iconNode, Donut as default };
|
|
}
|
|
|
|
declare const __iconNode$7U: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_dollar_sign {
|
|
export { __iconNode$7U as __iconNode, DollarSign as default };
|
|
}
|
|
|
|
declare const __iconNode$7T: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_dog {
|
|
export { __iconNode$7T as __iconNode, Dog as default };
|
|
}
|
|
|
|
declare const __iconNode$7S: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_dock {
|
|
export { __iconNode$7S as __iconNode, Dock as default };
|
|
}
|
|
|
|
declare const __iconNode$7R: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_dna {
|
|
export { __iconNode$7R as __iconNode, Dna as default };
|
|
}
|
|
|
|
declare const __iconNode$7Q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_dna_off {
|
|
export { __iconNode$7Q as __iconNode, DnaOff as default };
|
|
}
|
|
|
|
declare const __iconNode$7P: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_divide {
|
|
export { __iconNode$7P as __iconNode, Divide as default };
|
|
}
|
|
|
|
declare const __iconNode$7O: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_disc {
|
|
export { __iconNode$7O as __iconNode, Disc as default };
|
|
}
|
|
|
|
declare const __iconNode$7N: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_disc_album {
|
|
export { __iconNode$7N as __iconNode, DiscAlbum as default };
|
|
}
|
|
|
|
declare const __iconNode$7M: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_disc_3 {
|
|
export { __iconNode$7M as __iconNode, Disc3 as default };
|
|
}
|
|
|
|
declare const __iconNode$7L: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_disc_2 {
|
|
export { __iconNode$7L as __iconNode, Disc2 as default };
|
|
}
|
|
|
|
declare const __iconNode$7K: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_diff {
|
|
export { __iconNode$7K as __iconNode, Diff as default };
|
|
}
|
|
|
|
declare const __iconNode$7J: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_dices {
|
|
export { __iconNode$7J as __iconNode, Dices as default };
|
|
}
|
|
|
|
declare const __iconNode$7I: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_dice_6 {
|
|
export { __iconNode$7I as __iconNode, Dice6 as default };
|
|
}
|
|
|
|
declare const __iconNode$7H: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_dice_5 {
|
|
export { __iconNode$7H as __iconNode, Dice5 as default };
|
|
}
|
|
|
|
declare const __iconNode$7G: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_dice_4 {
|
|
export { __iconNode$7G as __iconNode, Dice4 as default };
|
|
}
|
|
|
|
declare const __iconNode$7F: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_dice_3 {
|
|
export { __iconNode$7F as __iconNode, Dice3 as default };
|
|
}
|
|
|
|
declare const __iconNode$7E: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_dice_2 {
|
|
export { __iconNode$7E as __iconNode, Dice2 as default };
|
|
}
|
|
|
|
declare const __iconNode$7D: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_dice_1 {
|
|
export { __iconNode$7D as __iconNode, Dice1 as default };
|
|
}
|
|
|
|
declare const __iconNode$7C: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_diamond {
|
|
export { __iconNode$7C as __iconNode, Diamond as default };
|
|
}
|
|
|
|
declare const __iconNode$7B: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_diamond_plus {
|
|
export { __iconNode$7B as __iconNode, DiamondPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$7A: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_diamond_percent {
|
|
export { __iconNode$7A as __iconNode, DiamondPercent as default };
|
|
}
|
|
|
|
declare const __iconNode$7z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_diamond_minus {
|
|
export { __iconNode$7z as __iconNode, DiamondMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$7y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_diameter {
|
|
export { __iconNode$7y as __iconNode, Diameter as default };
|
|
}
|
|
|
|
declare const __iconNode$7x: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_dessert {
|
|
export { __iconNode$7x as __iconNode, Dessert as default };
|
|
}
|
|
|
|
declare const __iconNode$7w: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_delete {
|
|
export { __iconNode$7w as __iconNode, Delete as default };
|
|
}
|
|
|
|
declare const __iconNode$7v: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_database {
|
|
export { __iconNode$7v as __iconNode, Database as default };
|
|
}
|
|
|
|
declare const __iconNode$7u: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_database_zap {
|
|
export { __iconNode$7u as __iconNode, DatabaseZap as default };
|
|
}
|
|
|
|
declare const __iconNode$7t: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_database_backup {
|
|
export { __iconNode$7t as __iconNode, DatabaseBackup as default };
|
|
}
|
|
|
|
declare const __iconNode$7s: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_dam {
|
|
export { __iconNode$7s as __iconNode, Dam as default };
|
|
}
|
|
|
|
declare const __iconNode$7r: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cylinder {
|
|
export { __iconNode$7r as __iconNode, Cylinder as default };
|
|
}
|
|
|
|
declare const __iconNode$7q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_currency {
|
|
export { __iconNode$7q as __iconNode, Currency as default };
|
|
}
|
|
|
|
declare const __iconNode$7p: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cup_soda {
|
|
export { __iconNode$7p as __iconNode, CupSoda as default };
|
|
}
|
|
|
|
declare const __iconNode$7o: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cuboid {
|
|
export { __iconNode$7o as __iconNode, Cuboid as default };
|
|
}
|
|
|
|
declare const __iconNode$7n: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_crown {
|
|
export { __iconNode$7n as __iconNode, Crown as default };
|
|
}
|
|
|
|
declare const __iconNode$7m: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_crosshair {
|
|
export { __iconNode$7m as __iconNode, Crosshair as default };
|
|
}
|
|
|
|
declare const __iconNode$7l: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cross {
|
|
export { __iconNode$7l as __iconNode, Cross as default };
|
|
}
|
|
|
|
declare const __iconNode$7k: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_crop {
|
|
export { __iconNode$7k as __iconNode, Crop as default };
|
|
}
|
|
|
|
declare const __iconNode$7j: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_croissant {
|
|
export { __iconNode$7j as __iconNode, Croissant as default };
|
|
}
|
|
|
|
declare const __iconNode$7i: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_credit_card {
|
|
export { __iconNode$7i as __iconNode, CreditCard as default };
|
|
}
|
|
|
|
declare const __iconNode$7h: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_creative_commons {
|
|
export { __iconNode$7h as __iconNode, CreativeCommons as default };
|
|
}
|
|
|
|
declare const __iconNode$7g: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cpu {
|
|
export { __iconNode$7g as __iconNode, Cpu as default };
|
|
}
|
|
|
|
declare const __iconNode$7f: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_corner_up_right {
|
|
export { __iconNode$7f as __iconNode, CornerUpRight as default };
|
|
}
|
|
|
|
declare const __iconNode$7e: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_corner_up_left {
|
|
export { __iconNode$7e as __iconNode, CornerUpLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$7d: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_corner_right_up {
|
|
export { __iconNode$7d as __iconNode, CornerRightUp as default };
|
|
}
|
|
|
|
declare const __iconNode$7c: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_corner_right_down {
|
|
export { __iconNode$7c as __iconNode, CornerRightDown as default };
|
|
}
|
|
|
|
declare const __iconNode$7b: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_corner_left_up {
|
|
export { __iconNode$7b as __iconNode, CornerLeftUp as default };
|
|
}
|
|
|
|
declare const __iconNode$7a: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_corner_left_down {
|
|
export { __iconNode$7a as __iconNode, CornerLeftDown as default };
|
|
}
|
|
|
|
declare const __iconNode$79: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_corner_down_right {
|
|
export { __iconNode$79 as __iconNode, CornerDownRight as default };
|
|
}
|
|
|
|
declare const __iconNode$78: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_corner_down_left {
|
|
export { __iconNode$78 as __iconNode, CornerDownLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$77: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_copyright {
|
|
export { __iconNode$77 as __iconNode, Copyright as default };
|
|
}
|
|
|
|
declare const __iconNode$76: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_copyleft {
|
|
export { __iconNode$76 as __iconNode, Copyleft as default };
|
|
}
|
|
|
|
declare const __iconNode$75: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_copy {
|
|
export { __iconNode$75 as __iconNode, Copy as default };
|
|
}
|
|
|
|
declare const __iconNode$74: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_copy_x {
|
|
export { __iconNode$74 as __iconNode, CopyX as default };
|
|
}
|
|
|
|
declare const __iconNode$73: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_copy_slash {
|
|
export { __iconNode$73 as __iconNode, CopySlash as default };
|
|
}
|
|
|
|
declare const __iconNode$72: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_copy_plus {
|
|
export { __iconNode$72 as __iconNode, CopyPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$71: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_copy_minus {
|
|
export { __iconNode$71 as __iconNode, CopyMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$70: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_copy_check {
|
|
export { __iconNode$70 as __iconNode, CopyCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$6$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cooking_pot {
|
|
export { __iconNode$6$ as __iconNode, CookingPot as default };
|
|
}
|
|
|
|
declare const __iconNode$6_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cookie {
|
|
export { __iconNode$6_ as __iconNode, Cookie as default };
|
|
}
|
|
|
|
declare const __iconNode$6Z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_contrast {
|
|
export { __iconNode$6Z as __iconNode, Contrast as default };
|
|
}
|
|
|
|
declare const __iconNode$6Y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_container {
|
|
export { __iconNode$6Y as __iconNode, Container as default };
|
|
}
|
|
|
|
declare const __iconNode$6X: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_contact {
|
|
export { __iconNode$6X as __iconNode, Contact as default };
|
|
}
|
|
|
|
declare const __iconNode$6W: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_contact_round {
|
|
export { __iconNode$6W as __iconNode, ContactRound as default };
|
|
}
|
|
|
|
declare const __iconNode$6V: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_construction {
|
|
export { __iconNode$6V as __iconNode, Construction as default };
|
|
}
|
|
|
|
declare const __iconNode$6U: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cone {
|
|
export { __iconNode$6U as __iconNode, Cone as default };
|
|
}
|
|
|
|
declare const __iconNode$6T: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_concierge_bell {
|
|
export { __iconNode$6T as __iconNode, ConciergeBell as default };
|
|
}
|
|
|
|
declare const __iconNode$6S: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_computer {
|
|
export { __iconNode$6S as __iconNode, Computer as default };
|
|
}
|
|
|
|
declare const __iconNode$6R: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_component {
|
|
export { __iconNode$6R as __iconNode, Component as default };
|
|
}
|
|
|
|
declare const __iconNode$6Q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_compass {
|
|
export { __iconNode$6Q as __iconNode, Compass as default };
|
|
}
|
|
|
|
declare const __iconNode$6P: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_command {
|
|
export { __iconNode$6P as __iconNode, Command as default };
|
|
}
|
|
|
|
declare const __iconNode$6O: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_combine {
|
|
export { __iconNode$6O as __iconNode, Combine as default };
|
|
}
|
|
|
|
declare const __iconNode$6N: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_columns_4 {
|
|
export { __iconNode$6N as __iconNode, Columns4 as default };
|
|
}
|
|
|
|
declare const __iconNode$6M: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_columns_3 {
|
|
export { __iconNode$6M as __iconNode, Columns3 as default };
|
|
}
|
|
|
|
declare const __iconNode$6L: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_columns_2 {
|
|
export { __iconNode$6L as __iconNode, Columns2 as default };
|
|
}
|
|
|
|
declare const __iconNode$6K: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_coins {
|
|
export { __iconNode$6K as __iconNode, Coins as default };
|
|
}
|
|
|
|
declare const __iconNode$6J: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cog {
|
|
export { __iconNode$6J as __iconNode, Cog as default };
|
|
}
|
|
|
|
declare const __iconNode$6I: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_coffee {
|
|
export { __iconNode$6I as __iconNode, Coffee as default };
|
|
}
|
|
|
|
declare const __iconNode$6H: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_codesandbox {
|
|
export { __iconNode$6H as __iconNode, Codesandbox as default };
|
|
}
|
|
|
|
declare const __iconNode$6G: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_codepen {
|
|
export { __iconNode$6G as __iconNode, Codepen as default };
|
|
}
|
|
|
|
declare const __iconNode$6F: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_code {
|
|
export { __iconNode$6F as __iconNode, Code as default };
|
|
}
|
|
|
|
declare const __iconNode$6E: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_code_xml {
|
|
export { __iconNode$6E as __iconNode, CodeXml as default };
|
|
}
|
|
|
|
declare const __iconNode$6D: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_club {
|
|
export { __iconNode$6D as __iconNode, Club as default };
|
|
}
|
|
|
|
declare const __iconNode$6C: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clover {
|
|
export { __iconNode$6C as __iconNode, Clover as default };
|
|
}
|
|
|
|
declare const __iconNode$6B: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cloudy {
|
|
export { __iconNode$6B as __iconNode, Cloudy as default };
|
|
}
|
|
|
|
declare const __iconNode$6A: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cloud {
|
|
export { __iconNode$6A as __iconNode, Cloud as default };
|
|
}
|
|
|
|
declare const __iconNode$6z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cloud_upload {
|
|
export { __iconNode$6z as __iconNode, CloudUpload as default };
|
|
}
|
|
|
|
declare const __iconNode$6y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cloud_sun {
|
|
export { __iconNode$6y as __iconNode, CloudSun as default };
|
|
}
|
|
|
|
declare const __iconNode$6x: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cloud_sun_rain {
|
|
export { __iconNode$6x as __iconNode, CloudSunRain as default };
|
|
}
|
|
|
|
declare const __iconNode$6w: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cloud_snow {
|
|
export { __iconNode$6w as __iconNode, CloudSnow as default };
|
|
}
|
|
|
|
declare const __iconNode$6v: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cloud_rain {
|
|
export { __iconNode$6v as __iconNode, CloudRain as default };
|
|
}
|
|
|
|
declare const __iconNode$6u: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cloud_rain_wind {
|
|
export { __iconNode$6u as __iconNode, CloudRainWind as default };
|
|
}
|
|
|
|
declare const __iconNode$6t: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cloud_off {
|
|
export { __iconNode$6t as __iconNode, CloudOff as default };
|
|
}
|
|
|
|
declare const __iconNode$6s: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cloud_moon {
|
|
export { __iconNode$6s as __iconNode, CloudMoon as default };
|
|
}
|
|
|
|
declare const __iconNode$6r: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cloud_moon_rain {
|
|
export { __iconNode$6r as __iconNode, CloudMoonRain as default };
|
|
}
|
|
|
|
declare const __iconNode$6q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cloud_lightning {
|
|
export { __iconNode$6q as __iconNode, CloudLightning as default };
|
|
}
|
|
|
|
declare const __iconNode$6p: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cloud_hail {
|
|
export { __iconNode$6p as __iconNode, CloudHail as default };
|
|
}
|
|
|
|
declare const __iconNode$6o: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cloud_fog {
|
|
export { __iconNode$6o as __iconNode, CloudFog as default };
|
|
}
|
|
|
|
declare const __iconNode$6n: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cloud_drizzle {
|
|
export { __iconNode$6n as __iconNode, CloudDrizzle as default };
|
|
}
|
|
|
|
declare const __iconNode$6m: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cloud_download {
|
|
export { __iconNode$6m as __iconNode, CloudDownload as default };
|
|
}
|
|
|
|
declare const __iconNode$6l: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cloud_cog {
|
|
export { __iconNode$6l as __iconNode, CloudCog as default };
|
|
}
|
|
|
|
declare const __iconNode$6k: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cloud_alert {
|
|
export { __iconNode$6k as __iconNode, CloudAlert as default };
|
|
}
|
|
|
|
declare const __iconNode$6j: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clock {
|
|
export { __iconNode$6j as __iconNode, Clock as default };
|
|
}
|
|
|
|
declare const __iconNode$6i: IconNode;
|
|
/**
|
|
* @component @name ClockFading
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/clock-fading
|
|
* @see https://lucide.dev/guide/packages/lucide-react - Documentation
|
|
*
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
* @returns {JSX.Element} JSX Element
|
|
*
|
|
*/
|
|
declare const ClockFading: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_clock_fading {
|
|
export { __iconNode$6i as __iconNode, ClockFading as default };
|
|
}
|
|
|
|
declare const __iconNode$6h: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clock_arrow_up {
|
|
export { __iconNode$6h as __iconNode, ClockArrowUp as default };
|
|
}
|
|
|
|
declare const __iconNode$6g: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clock_arrow_down {
|
|
export { __iconNode$6g as __iconNode, ClockArrowDown as default };
|
|
}
|
|
|
|
declare const __iconNode$6f: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clock_alert {
|
|
export { __iconNode$6f as __iconNode, ClockAlert as default };
|
|
}
|
|
|
|
declare const __iconNode$6e: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clock_9 {
|
|
export { __iconNode$6e as __iconNode, Clock9 as default };
|
|
}
|
|
|
|
declare const __iconNode$6d: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clock_8 {
|
|
export { __iconNode$6d as __iconNode, Clock8 as default };
|
|
}
|
|
|
|
declare const __iconNode$6c: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clock_7 {
|
|
export { __iconNode$6c as __iconNode, Clock7 as default };
|
|
}
|
|
|
|
declare const __iconNode$6b: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clock_6 {
|
|
export { __iconNode$6b as __iconNode, Clock6 as default };
|
|
}
|
|
|
|
declare const __iconNode$6a: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clock_5 {
|
|
export { __iconNode$6a as __iconNode, Clock5 as default };
|
|
}
|
|
|
|
declare const __iconNode$69: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clock_4 {
|
|
export { __iconNode$69 as __iconNode, Clock4 as default };
|
|
}
|
|
|
|
declare const __iconNode$68: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clock_3 {
|
|
export { __iconNode$68 as __iconNode, Clock3 as default };
|
|
}
|
|
|
|
declare const __iconNode$67: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clock_2 {
|
|
export { __iconNode$67 as __iconNode, Clock2 as default };
|
|
}
|
|
|
|
declare const __iconNode$66: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clock_12 {
|
|
export { __iconNode$66 as __iconNode, Clock12 as default };
|
|
}
|
|
|
|
declare const __iconNode$65: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clock_11 {
|
|
export { __iconNode$65 as __iconNode, Clock11 as default };
|
|
}
|
|
|
|
declare const __iconNode$64: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clock_10 {
|
|
export { __iconNode$64 as __iconNode, Clock10 as default };
|
|
}
|
|
|
|
declare const __iconNode$63: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clock_1 {
|
|
export { __iconNode$63 as __iconNode, Clock1 as default };
|
|
}
|
|
|
|
declare const __iconNode$62: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clipboard {
|
|
export { __iconNode$62 as __iconNode, Clipboard as default };
|
|
}
|
|
|
|
declare const __iconNode$61: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clipboard_x {
|
|
export { __iconNode$61 as __iconNode, ClipboardX as default };
|
|
}
|
|
|
|
declare const __iconNode$60: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clipboard_type {
|
|
export { __iconNode$60 as __iconNode, ClipboardType as default };
|
|
}
|
|
|
|
declare const __iconNode$5$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clipboard_plus {
|
|
export { __iconNode$5$ as __iconNode, ClipboardPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$5_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clipboard_pen {
|
|
export { __iconNode$5_ as __iconNode, ClipboardPen as default };
|
|
}
|
|
|
|
declare const __iconNode$5Z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clipboard_pen_line {
|
|
export { __iconNode$5Z as __iconNode, ClipboardPenLine as default };
|
|
}
|
|
|
|
declare const __iconNode$5Y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clipboard_paste {
|
|
export { __iconNode$5Y as __iconNode, ClipboardPaste as default };
|
|
}
|
|
|
|
declare const __iconNode$5X: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clipboard_minus {
|
|
export { __iconNode$5X as __iconNode, ClipboardMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$5W: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clipboard_list {
|
|
export { __iconNode$5W as __iconNode, ClipboardList as default };
|
|
}
|
|
|
|
declare const __iconNode$5V: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clipboard_copy {
|
|
export { __iconNode$5V as __iconNode, ClipboardCopy as default };
|
|
}
|
|
|
|
declare const __iconNode$5U: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clipboard_check {
|
|
export { __iconNode$5U as __iconNode, ClipboardCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$5T: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_clapperboard {
|
|
export { __iconNode$5T as __iconNode, Clapperboard as default };
|
|
}
|
|
|
|
declare const __iconNode$5S: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_citrus {
|
|
export { __iconNode$5S as __iconNode, Citrus as default };
|
|
}
|
|
|
|
declare const __iconNode$5R: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circuit_board {
|
|
export { __iconNode$5R as __iconNode, CircuitBoard as default };
|
|
}
|
|
|
|
declare const __iconNode$5Q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle {
|
|
export { __iconNode$5Q as __iconNode, Circle as default };
|
|
}
|
|
|
|
declare const __iconNode$5P: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_x {
|
|
export { __iconNode$5P as __iconNode, CircleX as default };
|
|
}
|
|
|
|
declare const __iconNode$5O: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_user {
|
|
export { __iconNode$5O as __iconNode, CircleUser as default };
|
|
}
|
|
|
|
declare const __iconNode$5N: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_user_round {
|
|
export { __iconNode$5N as __iconNode, CircleUserRound as default };
|
|
}
|
|
|
|
declare const __iconNode$5M: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_stop {
|
|
export { __iconNode$5M as __iconNode, CircleStop as default };
|
|
}
|
|
|
|
declare const __iconNode$5L: IconNode;
|
|
/**
|
|
* @component @name CircleSmall
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/circle-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 CircleSmall: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_circle_small {
|
|
export { __iconNode$5L as __iconNode, CircleSmall as default };
|
|
}
|
|
|
|
declare const __iconNode$5K: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_slash {
|
|
export { __iconNode$5K as __iconNode, CircleSlash as default };
|
|
}
|
|
|
|
declare const __iconNode$5J: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_slash_2 {
|
|
export { __iconNode$5J as __iconNode, CircleSlash2 as default };
|
|
}
|
|
|
|
declare const __iconNode$5I: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_power {
|
|
export { __iconNode$5I as __iconNode, CirclePower as default };
|
|
}
|
|
|
|
declare const __iconNode$5H: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_plus {
|
|
export { __iconNode$5H as __iconNode, CirclePlus as default };
|
|
}
|
|
|
|
declare const __iconNode$5G: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_play {
|
|
export { __iconNode$5G as __iconNode, CirclePlay as default };
|
|
}
|
|
|
|
declare const __iconNode$5F: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_percent {
|
|
export { __iconNode$5F as __iconNode, CirclePercent as default };
|
|
}
|
|
|
|
declare const __iconNode$5E: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_pause {
|
|
export { __iconNode$5E as __iconNode, CirclePause as default };
|
|
}
|
|
|
|
declare const __iconNode$5D: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_parking {
|
|
export { __iconNode$5D as __iconNode, CircleParking as default };
|
|
}
|
|
|
|
declare const __iconNode$5C: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_parking_off {
|
|
export { __iconNode$5C as __iconNode, CircleParkingOff as default };
|
|
}
|
|
|
|
declare const __iconNode$5B: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_off {
|
|
export { __iconNode$5B as __iconNode, CircleOff as default };
|
|
}
|
|
|
|
declare const __iconNode$5A: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_minus {
|
|
export { __iconNode$5A as __iconNode, CircleMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$5z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_help {
|
|
export { __iconNode$5z as __iconNode, CircleHelp as default };
|
|
}
|
|
|
|
declare const __iconNode$5y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_gauge {
|
|
export { __iconNode$5y as __iconNode, CircleGauge as default };
|
|
}
|
|
|
|
declare const __iconNode$5x: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_fading_plus {
|
|
export { __iconNode$5x as __iconNode, CircleFadingPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$5w: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_fading_arrow_up {
|
|
export { __iconNode$5w as __iconNode, CircleFadingArrowUp as default };
|
|
}
|
|
|
|
declare const __iconNode$5v: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_equal {
|
|
export { __iconNode$5v as __iconNode, CircleEqual as default };
|
|
}
|
|
|
|
declare const __iconNode$5u: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_ellipsis {
|
|
export { __iconNode$5u as __iconNode, CircleEllipsis as default };
|
|
}
|
|
|
|
declare const __iconNode$5t: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_dot {
|
|
export { __iconNode$5t as __iconNode, CircleDot as default };
|
|
}
|
|
|
|
declare const __iconNode$5s: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_dot_dashed {
|
|
export { __iconNode$5s as __iconNode, CircleDotDashed as default };
|
|
}
|
|
|
|
declare const __iconNode$5r: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_dollar_sign {
|
|
export { __iconNode$5r as __iconNode, CircleDollarSign as default };
|
|
}
|
|
|
|
declare const __iconNode$5q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_divide {
|
|
export { __iconNode$5q as __iconNode, CircleDivide as default };
|
|
}
|
|
|
|
declare const __iconNode$5p: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_dashed {
|
|
export { __iconNode$5p as __iconNode, CircleDashed as default };
|
|
}
|
|
|
|
declare const __iconNode$5o: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_chevron_up {
|
|
export { __iconNode$5o as __iconNode, CircleChevronUp as default };
|
|
}
|
|
|
|
declare const __iconNode$5n: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_chevron_right {
|
|
export { __iconNode$5n as __iconNode, CircleChevronRight as default };
|
|
}
|
|
|
|
declare const __iconNode$5m: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_chevron_left {
|
|
export { __iconNode$5m as __iconNode, CircleChevronLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$5l: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_chevron_down {
|
|
export { __iconNode$5l as __iconNode, CircleChevronDown as default };
|
|
}
|
|
|
|
declare const __iconNode$5k: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_check {
|
|
export { __iconNode$5k as __iconNode, CircleCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$5j: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_check_big {
|
|
export { __iconNode$5j as __iconNode, CircleCheckBig as default };
|
|
}
|
|
|
|
declare const __iconNode$5i: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_arrow_up {
|
|
export { __iconNode$5i as __iconNode, CircleArrowUp as default };
|
|
}
|
|
|
|
declare const __iconNode$5h: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_arrow_right {
|
|
export { __iconNode$5h as __iconNode, CircleArrowRight as default };
|
|
}
|
|
|
|
declare const __iconNode$5g: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_arrow_out_up_right {
|
|
export { __iconNode$5g as __iconNode, CircleArrowOutUpRight as default };
|
|
}
|
|
|
|
declare const __iconNode$5f: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_arrow_out_up_left {
|
|
export { __iconNode$5f as __iconNode, CircleArrowOutUpLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$5e: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_arrow_out_down_right {
|
|
export { __iconNode$5e as __iconNode, CircleArrowOutDownRight as default };
|
|
}
|
|
|
|
declare const __iconNode$5d: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_arrow_out_down_left {
|
|
export { __iconNode$5d as __iconNode, CircleArrowOutDownLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$5c: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_arrow_left {
|
|
export { __iconNode$5c as __iconNode, CircleArrowLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$5b: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_arrow_down {
|
|
export { __iconNode$5b as __iconNode, CircleArrowDown as default };
|
|
}
|
|
|
|
declare const __iconNode$5a: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_circle_alert {
|
|
export { __iconNode$5a as __iconNode, CircleAlert as default };
|
|
}
|
|
|
|
declare const __iconNode$59: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cigarette {
|
|
export { __iconNode$59 as __iconNode, Cigarette as default };
|
|
}
|
|
|
|
declare const __iconNode$58: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cigarette_off {
|
|
export { __iconNode$58 as __iconNode, CigaretteOff as default };
|
|
}
|
|
|
|
declare const __iconNode$57: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_church {
|
|
export { __iconNode$57 as __iconNode, Church as default };
|
|
}
|
|
|
|
declare const __iconNode$56: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chrome {
|
|
export { __iconNode$56 as __iconNode, Chrome as default };
|
|
}
|
|
|
|
declare const __iconNode$55: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chevrons_up {
|
|
export { __iconNode$55 as __iconNode, ChevronsUp as default };
|
|
}
|
|
|
|
declare const __iconNode$54: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chevrons_up_down {
|
|
export { __iconNode$54 as __iconNode, ChevronsUpDown as default };
|
|
}
|
|
|
|
declare const __iconNode$53: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chevrons_right {
|
|
export { __iconNode$53 as __iconNode, ChevronsRight as default };
|
|
}
|
|
|
|
declare const __iconNode$52: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chevrons_right_left {
|
|
export { __iconNode$52 as __iconNode, ChevronsRightLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$51: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chevrons_left {
|
|
export { __iconNode$51 as __iconNode, ChevronsLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$50: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chevrons_left_right {
|
|
export { __iconNode$50 as __iconNode, ChevronsLeftRight as default };
|
|
}
|
|
|
|
declare const __iconNode$4$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chevrons_left_right_ellipsis {
|
|
export { __iconNode$4$ as __iconNode, ChevronsLeftRightEllipsis as default };
|
|
}
|
|
|
|
declare const __iconNode$4_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chevrons_down {
|
|
export { __iconNode$4_ as __iconNode, ChevronsDown as default };
|
|
}
|
|
|
|
declare const __iconNode$4Z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chevrons_down_up {
|
|
export { __iconNode$4Z as __iconNode, ChevronsDownUp as default };
|
|
}
|
|
|
|
declare const __iconNode$4Y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chevron_up {
|
|
export { __iconNode$4Y as __iconNode, ChevronUp as default };
|
|
}
|
|
|
|
declare const __iconNode$4X: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chevron_right {
|
|
export { __iconNode$4X as __iconNode, ChevronRight as default };
|
|
}
|
|
|
|
declare const __iconNode$4W: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chevron_left {
|
|
export { __iconNode$4W as __iconNode, ChevronLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$4V: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chevron_last {
|
|
export { __iconNode$4V as __iconNode, ChevronLast as default };
|
|
}
|
|
|
|
declare const __iconNode$4U: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chevron_first {
|
|
export { __iconNode$4U as __iconNode, ChevronFirst as default };
|
|
}
|
|
|
|
declare const __iconNode$4T: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chevron_down {
|
|
export { __iconNode$4T as __iconNode, ChevronDown as default };
|
|
}
|
|
|
|
declare const __iconNode$4S: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cherry {
|
|
export { __iconNode$4S as __iconNode, Cherry as default };
|
|
}
|
|
|
|
declare const __iconNode$4R: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chef_hat {
|
|
export { __iconNode$4R as __iconNode, ChefHat as default };
|
|
}
|
|
|
|
declare const __iconNode$4Q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_check {
|
|
export { __iconNode$4Q as __iconNode, Check as default };
|
|
}
|
|
|
|
declare const __iconNode$4P: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_check_check {
|
|
export { __iconNode$4P as __iconNode, CheckCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$4O: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_spline {
|
|
export { __iconNode$4O as __iconNode, ChartSpline as default };
|
|
}
|
|
|
|
declare const __iconNode$4N: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_scatter {
|
|
export { __iconNode$4N as __iconNode, ChartScatter as default };
|
|
}
|
|
|
|
declare const __iconNode$4M: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_pie {
|
|
export { __iconNode$4M as __iconNode, ChartPie as default };
|
|
}
|
|
|
|
declare const __iconNode$4L: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_no_axes_gantt {
|
|
export { __iconNode$4L as __iconNode, ChartNoAxesGantt as default };
|
|
}
|
|
|
|
declare const __iconNode$4K: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_no_axes_combined {
|
|
export { __iconNode$4K as __iconNode, ChartNoAxesCombined as default };
|
|
}
|
|
|
|
declare const __iconNode$4J: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_no_axes_column {
|
|
export { __iconNode$4J as __iconNode, ChartNoAxesColumn as default };
|
|
}
|
|
|
|
declare const __iconNode$4I: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_no_axes_column_increasing {
|
|
export { __iconNode$4I as __iconNode, ChartNoAxesColumnIncreasing as default };
|
|
}
|
|
|
|
declare const __iconNode$4H: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_no_axes_column_decreasing {
|
|
export { __iconNode$4H as __iconNode, ChartNoAxesColumnDecreasing as default };
|
|
}
|
|
|
|
declare const __iconNode$4G: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_network {
|
|
export { __iconNode$4G as __iconNode, ChartNetwork as default };
|
|
}
|
|
|
|
declare const __iconNode$4F: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_line {
|
|
export { __iconNode$4F as __iconNode, ChartLine as default };
|
|
}
|
|
|
|
declare const __iconNode$4E: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_gantt {
|
|
export { __iconNode$4E as __iconNode, ChartGantt as default };
|
|
}
|
|
|
|
declare const __iconNode$4D: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_column {
|
|
export { __iconNode$4D as __iconNode, ChartColumn as default };
|
|
}
|
|
|
|
declare const __iconNode$4C: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_column_stacked {
|
|
export { __iconNode$4C as __iconNode, ChartColumnStacked as default };
|
|
}
|
|
|
|
declare const __iconNode$4B: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_column_increasing {
|
|
export { __iconNode$4B as __iconNode, ChartColumnIncreasing as default };
|
|
}
|
|
|
|
declare const __iconNode$4A: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_column_decreasing {
|
|
export { __iconNode$4A as __iconNode, ChartColumnDecreasing as default };
|
|
}
|
|
|
|
declare const __iconNode$4z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_column_big {
|
|
export { __iconNode$4z as __iconNode, ChartColumnBig as default };
|
|
}
|
|
|
|
declare const __iconNode$4y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_candlestick {
|
|
export { __iconNode$4y as __iconNode, ChartCandlestick as default };
|
|
}
|
|
|
|
declare const __iconNode$4x: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_bar {
|
|
export { __iconNode$4x as __iconNode, ChartBar as default };
|
|
}
|
|
|
|
declare const __iconNode$4w: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_bar_stacked {
|
|
export { __iconNode$4w as __iconNode, ChartBarStacked as default };
|
|
}
|
|
|
|
declare const __iconNode$4v: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_bar_increasing {
|
|
export { __iconNode$4v as __iconNode, ChartBarIncreasing as default };
|
|
}
|
|
|
|
declare const __iconNode$4u: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_bar_decreasing {
|
|
export { __iconNode$4u as __iconNode, ChartBarDecreasing as default };
|
|
}
|
|
|
|
declare const __iconNode$4t: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_bar_big {
|
|
export { __iconNode$4t as __iconNode, ChartBarBig as default };
|
|
}
|
|
|
|
declare const __iconNode$4s: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_chart_area {
|
|
export { __iconNode$4s as __iconNode, ChartArea as default };
|
|
}
|
|
|
|
declare const __iconNode$4r: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cctv {
|
|
export { __iconNode$4r as __iconNode, Cctv as default };
|
|
}
|
|
|
|
declare const __iconNode$4q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cat {
|
|
export { __iconNode$4q as __iconNode, Cat as default };
|
|
}
|
|
|
|
declare const __iconNode$4p: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_castle {
|
|
export { __iconNode$4p as __iconNode, Castle as default };
|
|
}
|
|
|
|
declare const __iconNode$4o: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cast {
|
|
export { __iconNode$4o as __iconNode, Cast as default };
|
|
}
|
|
|
|
declare const __iconNode$4n: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cassette_tape {
|
|
export { __iconNode$4n as __iconNode, CassetteTape as default };
|
|
}
|
|
|
|
declare const __iconNode$4m: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_case_upper {
|
|
export { __iconNode$4m as __iconNode, CaseUpper as default };
|
|
}
|
|
|
|
declare const __iconNode$4l: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_case_sensitive {
|
|
export { __iconNode$4l as __iconNode, CaseSensitive as default };
|
|
}
|
|
|
|
declare const __iconNode$4k: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_case_lower {
|
|
export { __iconNode$4k as __iconNode, CaseLower as default };
|
|
}
|
|
|
|
declare const __iconNode$4j: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_carrot {
|
|
export { __iconNode$4j as __iconNode, Carrot as default };
|
|
}
|
|
|
|
declare const __iconNode$4i: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_caravan {
|
|
export { __iconNode$4i as __iconNode, Caravan as default };
|
|
}
|
|
|
|
declare const __iconNode$4h: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_car {
|
|
export { __iconNode$4h as __iconNode, Car as default };
|
|
}
|
|
|
|
declare const __iconNode$4g: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_car_taxi_front {
|
|
export { __iconNode$4g as __iconNode, CarTaxiFront as default };
|
|
}
|
|
|
|
declare const __iconNode$4f: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_car_front {
|
|
export { __iconNode$4f as __iconNode, CarFront as default };
|
|
}
|
|
|
|
declare const __iconNode$4e: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_captions {
|
|
export { __iconNode$4e as __iconNode, Captions as default };
|
|
}
|
|
|
|
declare const __iconNode$4d: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_captions_off {
|
|
export { __iconNode$4d as __iconNode, CaptionsOff as default };
|
|
}
|
|
|
|
declare const __iconNode$4c: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cannabis {
|
|
export { __iconNode$4c as __iconNode, Cannabis as default };
|
|
}
|
|
|
|
declare const __iconNode$4b: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_candy {
|
|
export { __iconNode$4b as __iconNode, Candy as default };
|
|
}
|
|
|
|
declare const __iconNode$4a: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_candy_off {
|
|
export { __iconNode$4a as __iconNode, CandyOff as default };
|
|
}
|
|
|
|
declare const __iconNode$49: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_candy_cane {
|
|
export { __iconNode$49 as __iconNode, CandyCane as default };
|
|
}
|
|
|
|
declare const __iconNode$48: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_camera {
|
|
export { __iconNode$48 as __iconNode, Camera as default };
|
|
}
|
|
|
|
declare const __iconNode$47: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_camera_off {
|
|
export { __iconNode$47 as __iconNode, CameraOff as default };
|
|
}
|
|
|
|
declare const __iconNode$46: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar {
|
|
export { __iconNode$46 as __iconNode, Calendar as default };
|
|
}
|
|
|
|
declare const __iconNode$45: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_x {
|
|
export { __iconNode$45 as __iconNode, CalendarX as default };
|
|
}
|
|
|
|
declare const __iconNode$44: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_x_2 {
|
|
export { __iconNode$44 as __iconNode, CalendarX2 as default };
|
|
}
|
|
|
|
declare const __iconNode$43: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_sync {
|
|
export { __iconNode$43 as __iconNode, CalendarSync as default };
|
|
}
|
|
|
|
declare const __iconNode$42: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_search {
|
|
export { __iconNode$42 as __iconNode, CalendarSearch as default };
|
|
}
|
|
|
|
declare const __iconNode$41: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_range {
|
|
export { __iconNode$41 as __iconNode, CalendarRange as default };
|
|
}
|
|
|
|
declare const __iconNode$40: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_plus {
|
|
export { __iconNode$40 as __iconNode, CalendarPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$3$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_plus_2 {
|
|
export { __iconNode$3$ as __iconNode, CalendarPlus2 as default };
|
|
}
|
|
|
|
declare const __iconNode$3_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_off {
|
|
export { __iconNode$3_ as __iconNode, CalendarOff as default };
|
|
}
|
|
|
|
declare const __iconNode$3Z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_minus {
|
|
export { __iconNode$3Z as __iconNode, CalendarMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$3Y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_minus_2 {
|
|
export { __iconNode$3Y as __iconNode, CalendarMinus2 as default };
|
|
}
|
|
|
|
declare const __iconNode$3X: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_heart {
|
|
export { __iconNode$3X as __iconNode, CalendarHeart as default };
|
|
}
|
|
|
|
declare const __iconNode$3W: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_fold {
|
|
export { __iconNode$3W as __iconNode, CalendarFold as default };
|
|
}
|
|
|
|
declare const __iconNode$3V: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_days {
|
|
export { __iconNode$3V as __iconNode, CalendarDays as default };
|
|
}
|
|
|
|
declare const __iconNode$3U: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_cog {
|
|
export { __iconNode$3U as __iconNode, CalendarCog as default };
|
|
}
|
|
|
|
declare const __iconNode$3T: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_clock {
|
|
export { __iconNode$3T as __iconNode, CalendarClock as default };
|
|
}
|
|
|
|
declare const __iconNode$3S: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_check {
|
|
export { __iconNode$3S as __iconNode, CalendarCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$3R: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_check_2 {
|
|
export { __iconNode$3R as __iconNode, CalendarCheck2 as default };
|
|
}
|
|
|
|
declare const __iconNode$3Q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_arrow_up {
|
|
export { __iconNode$3Q as __iconNode, CalendarArrowUp as default };
|
|
}
|
|
|
|
declare const __iconNode$3P: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_arrow_down {
|
|
export { __iconNode$3P as __iconNode, CalendarArrowDown as default };
|
|
}
|
|
|
|
declare const __iconNode$3O: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calendar_1 {
|
|
export { __iconNode$3O as __iconNode, Calendar1 as default };
|
|
}
|
|
|
|
declare const __iconNode$3N: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_calculator {
|
|
export { __iconNode$3N as __iconNode, Calculator as default };
|
|
}
|
|
|
|
declare const __iconNode$3M: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cake {
|
|
export { __iconNode$3M as __iconNode, Cake as default };
|
|
}
|
|
|
|
declare const __iconNode$3L: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cake_slice {
|
|
export { __iconNode$3L as __iconNode, CakeSlice as default };
|
|
}
|
|
|
|
declare const __iconNode$3K: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cable {
|
|
export { __iconNode$3K as __iconNode, Cable as default };
|
|
}
|
|
|
|
declare const __iconNode$3J: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_cable_car {
|
|
export { __iconNode$3J as __iconNode, CableCar as default };
|
|
}
|
|
|
|
declare const __iconNode$3I: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bus {
|
|
export { __iconNode$3I as __iconNode, Bus as default };
|
|
}
|
|
|
|
declare const __iconNode$3H: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bus_front {
|
|
export { __iconNode$3H as __iconNode, BusFront as default };
|
|
}
|
|
|
|
declare const __iconNode$3G: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_building {
|
|
export { __iconNode$3G as __iconNode, Building as default };
|
|
}
|
|
|
|
declare const __iconNode$3F: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_building_2 {
|
|
export { __iconNode$3F as __iconNode, Building2 as default };
|
|
}
|
|
|
|
declare const __iconNode$3E: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bug {
|
|
export { __iconNode$3E as __iconNode, Bug as default };
|
|
}
|
|
|
|
declare const __iconNode$3D: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bug_play {
|
|
export { __iconNode$3D as __iconNode, BugPlay as default };
|
|
}
|
|
|
|
declare const __iconNode$3C: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bug_off {
|
|
export { __iconNode$3C as __iconNode, BugOff as default };
|
|
}
|
|
|
|
declare const __iconNode$3B: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_brush {
|
|
export { __iconNode$3B as __iconNode, Brush as default };
|
|
}
|
|
|
|
declare const __iconNode$3A: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bring_to_front {
|
|
export { __iconNode$3A as __iconNode, BringToFront as default };
|
|
}
|
|
|
|
declare const __iconNode$3z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_briefcase {
|
|
export { __iconNode$3z as __iconNode, Briefcase as default };
|
|
}
|
|
|
|
declare const __iconNode$3y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_briefcase_medical {
|
|
export { __iconNode$3y as __iconNode, BriefcaseMedical as default };
|
|
}
|
|
|
|
declare const __iconNode$3x: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_briefcase_conveyor_belt {
|
|
export { __iconNode$3x as __iconNode, BriefcaseConveyorBelt as default };
|
|
}
|
|
|
|
declare const __iconNode$3w: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_briefcase_business {
|
|
export { __iconNode$3w as __iconNode, BriefcaseBusiness as default };
|
|
}
|
|
|
|
declare const __iconNode$3v: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_brick_wall {
|
|
export { __iconNode$3v as __iconNode, BrickWall as default };
|
|
}
|
|
|
|
declare const __iconNode$3u: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_brain {
|
|
export { __iconNode$3u as __iconNode, Brain as default };
|
|
}
|
|
|
|
declare const __iconNode$3t: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_brain_cog {
|
|
export { __iconNode$3t as __iconNode, BrainCog as default };
|
|
}
|
|
|
|
declare const __iconNode$3s: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_brain_circuit {
|
|
export { __iconNode$3s as __iconNode, BrainCircuit as default };
|
|
}
|
|
|
|
declare const __iconNode$3r: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_brackets {
|
|
export { __iconNode$3r as __iconNode, Brackets as default };
|
|
}
|
|
|
|
declare const __iconNode$3q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_braces {
|
|
export { __iconNode$3q as __iconNode, Braces as default };
|
|
}
|
|
|
|
declare const __iconNode$3p: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_boxes {
|
|
export { __iconNode$3p as __iconNode, Boxes as default };
|
|
}
|
|
|
|
declare const __iconNode$3o: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_box {
|
|
export { __iconNode$3o as __iconNode, Box as default };
|
|
}
|
|
|
|
declare const __iconNode$3n: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bot {
|
|
export { __iconNode$3n as __iconNode, Bot as default };
|
|
}
|
|
|
|
declare const __iconNode$3m: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bot_off {
|
|
export { __iconNode$3m as __iconNode, BotOff as default };
|
|
}
|
|
|
|
declare const __iconNode$3l: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bot_message_square {
|
|
export { __iconNode$3l as __iconNode, BotMessageSquare as default };
|
|
}
|
|
|
|
declare const __iconNode$3k: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_boom_box {
|
|
export { __iconNode$3k as __iconNode, BoomBox as default };
|
|
}
|
|
|
|
declare const __iconNode$3j: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bookmark {
|
|
export { __iconNode$3j as __iconNode, Bookmark as default };
|
|
}
|
|
|
|
declare const __iconNode$3i: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bookmark_x {
|
|
export { __iconNode$3i as __iconNode, BookmarkX as default };
|
|
}
|
|
|
|
declare const __iconNode$3h: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bookmark_plus {
|
|
export { __iconNode$3h as __iconNode, BookmarkPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$3g: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bookmark_minus {
|
|
export { __iconNode$3g as __iconNode, BookmarkMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$3f: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bookmark_check {
|
|
export { __iconNode$3f as __iconNode, BookmarkCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$3e: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book {
|
|
export { __iconNode$3e as __iconNode, Book as default };
|
|
}
|
|
|
|
declare const __iconNode$3d: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_x {
|
|
export { __iconNode$3d as __iconNode, BookX as default };
|
|
}
|
|
|
|
declare const __iconNode$3c: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_user {
|
|
export { __iconNode$3c as __iconNode, BookUser as default };
|
|
}
|
|
|
|
declare const __iconNode$3b: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_up {
|
|
export { __iconNode$3b as __iconNode, BookUp as default };
|
|
}
|
|
|
|
declare const __iconNode$3a: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_up_2 {
|
|
export { __iconNode$3a as __iconNode, BookUp2 as default };
|
|
}
|
|
|
|
declare const __iconNode$39: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_type {
|
|
export { __iconNode$39 as __iconNode, BookType as default };
|
|
}
|
|
|
|
declare const __iconNode$38: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_text {
|
|
export { __iconNode$38 as __iconNode, BookText as default };
|
|
}
|
|
|
|
declare const __iconNode$37: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_plus {
|
|
export { __iconNode$37 as __iconNode, BookPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$36: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_open {
|
|
export { __iconNode$36 as __iconNode, BookOpen as default };
|
|
}
|
|
|
|
declare const __iconNode$35: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_open_text {
|
|
export { __iconNode$35 as __iconNode, BookOpenText as default };
|
|
}
|
|
|
|
declare const __iconNode$34: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_open_check {
|
|
export { __iconNode$34 as __iconNode, BookOpenCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$33: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_minus {
|
|
export { __iconNode$33 as __iconNode, BookMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$32: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_marked {
|
|
export { __iconNode$32 as __iconNode, BookMarked as default };
|
|
}
|
|
|
|
declare const __iconNode$31: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_lock {
|
|
export { __iconNode$31 as __iconNode, BookLock as default };
|
|
}
|
|
|
|
declare const __iconNode$30: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_key {
|
|
export { __iconNode$30 as __iconNode, BookKey as default };
|
|
}
|
|
|
|
declare const __iconNode$2$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_image {
|
|
export { __iconNode$2$ as __iconNode, BookImage as default };
|
|
}
|
|
|
|
declare const __iconNode$2_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_heart {
|
|
export { __iconNode$2_ as __iconNode, BookHeart as default };
|
|
}
|
|
|
|
declare const __iconNode$2Z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_headphones {
|
|
export { __iconNode$2Z as __iconNode, BookHeadphones as default };
|
|
}
|
|
|
|
declare const __iconNode$2Y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_down {
|
|
export { __iconNode$2Y as __iconNode, BookDown as default };
|
|
}
|
|
|
|
declare const __iconNode$2X: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_dashed {
|
|
export { __iconNode$2X as __iconNode, BookDashed as default };
|
|
}
|
|
|
|
declare const __iconNode$2W: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_copy {
|
|
export { __iconNode$2W as __iconNode, BookCopy as default };
|
|
}
|
|
|
|
declare const __iconNode$2V: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_check {
|
|
export { __iconNode$2V as __iconNode, BookCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$2U: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_audio {
|
|
export { __iconNode$2U as __iconNode, BookAudio as default };
|
|
}
|
|
|
|
declare const __iconNode$2T: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_book_a {
|
|
export { __iconNode$2T as __iconNode, BookA as default };
|
|
}
|
|
|
|
declare const __iconNode$2S: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bone {
|
|
export { __iconNode$2S as __iconNode, Bone as default };
|
|
}
|
|
|
|
declare const __iconNode$2R: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bomb {
|
|
export { __iconNode$2R as __iconNode, Bomb as default };
|
|
}
|
|
|
|
declare const __iconNode$2Q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bolt {
|
|
export { __iconNode$2Q as __iconNode, Bolt as default };
|
|
}
|
|
|
|
declare const __iconNode$2P: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bold {
|
|
export { __iconNode$2P as __iconNode, Bold as default };
|
|
}
|
|
|
|
declare const __iconNode$2O: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bluetooth {
|
|
export { __iconNode$2O as __iconNode, Bluetooth as default };
|
|
}
|
|
|
|
declare const __iconNode$2N: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bluetooth_searching {
|
|
export { __iconNode$2N as __iconNode, BluetoothSearching as default };
|
|
}
|
|
|
|
declare const __iconNode$2M: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bluetooth_off {
|
|
export { __iconNode$2M as __iconNode, BluetoothOff as default };
|
|
}
|
|
|
|
declare const __iconNode$2L: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bluetooth_connected {
|
|
export { __iconNode$2L as __iconNode, BluetoothConnected as default };
|
|
}
|
|
|
|
declare const __iconNode$2K: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_blocks {
|
|
export { __iconNode$2K as __iconNode, Blocks as default };
|
|
}
|
|
|
|
declare const __iconNode$2J: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_blinds {
|
|
export { __iconNode$2J as __iconNode, Blinds as default };
|
|
}
|
|
|
|
declare const __iconNode$2I: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_blend {
|
|
export { __iconNode$2I as __iconNode, Blend as default };
|
|
}
|
|
|
|
declare const __iconNode$2H: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bitcoin {
|
|
export { __iconNode$2H as __iconNode, Bitcoin as default };
|
|
}
|
|
|
|
declare const __iconNode$2G: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bird {
|
|
export { __iconNode$2G as __iconNode, Bird as default };
|
|
}
|
|
|
|
declare const __iconNode$2F: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_biohazard {
|
|
export { __iconNode$2F as __iconNode, Biohazard as default };
|
|
}
|
|
|
|
declare const __iconNode$2E: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_binoculars {
|
|
export { __iconNode$2E as __iconNode, Binoculars as default };
|
|
}
|
|
|
|
declare const __iconNode$2D: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_binary {
|
|
export { __iconNode$2D as __iconNode, Binary as default };
|
|
}
|
|
|
|
declare const __iconNode$2C: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bike {
|
|
export { __iconNode$2C as __iconNode, Bike as default };
|
|
}
|
|
|
|
declare const __iconNode$2B: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_biceps_flexed {
|
|
export { __iconNode$2B as __iconNode, BicepsFlexed as default };
|
|
}
|
|
|
|
declare const __iconNode$2A: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_between_vertical_start {
|
|
export { __iconNode$2A as __iconNode, BetweenVerticalStart as default };
|
|
}
|
|
|
|
declare const __iconNode$2z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_between_vertical_end {
|
|
export { __iconNode$2z as __iconNode, BetweenVerticalEnd as default };
|
|
}
|
|
|
|
declare const __iconNode$2y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_between_horizontal_start {
|
|
export { __iconNode$2y as __iconNode, BetweenHorizontalStart as default };
|
|
}
|
|
|
|
declare const __iconNode$2x: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_between_horizontal_end {
|
|
export { __iconNode$2x as __iconNode, BetweenHorizontalEnd as default };
|
|
}
|
|
|
|
declare const __iconNode$2w: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bell {
|
|
export { __iconNode$2w as __iconNode, Bell as default };
|
|
}
|
|
|
|
declare const __iconNode$2v: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bell_ring {
|
|
export { __iconNode$2v as __iconNode, BellRing as default };
|
|
}
|
|
|
|
declare const __iconNode$2u: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bell_plus {
|
|
export { __iconNode$2u as __iconNode, BellPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$2t: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bell_off {
|
|
export { __iconNode$2t as __iconNode, BellOff as default };
|
|
}
|
|
|
|
declare const __iconNode$2s: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bell_minus {
|
|
export { __iconNode$2s as __iconNode, BellMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$2r: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bell_electric {
|
|
export { __iconNode$2r as __iconNode, BellElectric as default };
|
|
}
|
|
|
|
declare const __iconNode$2q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bell_dot {
|
|
export { __iconNode$2q as __iconNode, BellDot as default };
|
|
}
|
|
|
|
declare const __iconNode$2p: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_beer {
|
|
export { __iconNode$2p as __iconNode, Beer as default };
|
|
}
|
|
|
|
declare const __iconNode$2o: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_beer_off {
|
|
export { __iconNode$2o as __iconNode, BeerOff as default };
|
|
}
|
|
|
|
declare const __iconNode$2n: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_beef {
|
|
export { __iconNode$2n as __iconNode, Beef as default };
|
|
}
|
|
|
|
declare const __iconNode$2m: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bed {
|
|
export { __iconNode$2m as __iconNode, Bed as default };
|
|
}
|
|
|
|
declare const __iconNode$2l: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bed_single {
|
|
export { __iconNode$2l as __iconNode, BedSingle as default };
|
|
}
|
|
|
|
declare const __iconNode$2k: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bed_double {
|
|
export { __iconNode$2k as __iconNode, BedDouble as default };
|
|
}
|
|
|
|
declare const __iconNode$2j: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bean {
|
|
export { __iconNode$2j as __iconNode, Bean as default };
|
|
}
|
|
|
|
declare const __iconNode$2i: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bean_off {
|
|
export { __iconNode$2i as __iconNode, BeanOff as default };
|
|
}
|
|
|
|
declare const __iconNode$2h: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_beaker {
|
|
export { __iconNode$2h as __iconNode, Beaker as default };
|
|
}
|
|
|
|
declare const __iconNode$2g: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_battery {
|
|
export { __iconNode$2g as __iconNode, Battery as default };
|
|
}
|
|
|
|
declare const __iconNode$2f: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_battery_warning {
|
|
export { __iconNode$2f as __iconNode, BatteryWarning as default };
|
|
}
|
|
|
|
declare const __iconNode$2e: IconNode;
|
|
/**
|
|
* @component @name BatteryPlus
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/battery-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 BatteryPlus: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_battery_plus {
|
|
export { __iconNode$2e as __iconNode, BatteryPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$2d: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_battery_medium {
|
|
export { __iconNode$2d as __iconNode, BatteryMedium as default };
|
|
}
|
|
|
|
declare const __iconNode$2c: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_battery_low {
|
|
export { __iconNode$2c as __iconNode, BatteryLow as default };
|
|
}
|
|
|
|
declare const __iconNode$2b: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_battery_full {
|
|
export { __iconNode$2b as __iconNode, BatteryFull as default };
|
|
}
|
|
|
|
declare const __iconNode$2a: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_battery_charging {
|
|
export { __iconNode$2a as __iconNode, BatteryCharging as default };
|
|
}
|
|
|
|
declare const __iconNode$29: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bath {
|
|
export { __iconNode$29 as __iconNode, Bath as default };
|
|
}
|
|
|
|
declare const __iconNode$28: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_baseline {
|
|
export { __iconNode$28 as __iconNode, Baseline as default };
|
|
}
|
|
|
|
declare const __iconNode$27: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_barcode {
|
|
export { __iconNode$27 as __iconNode, Barcode as default };
|
|
}
|
|
|
|
declare const __iconNode$26: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_banknote {
|
|
export { __iconNode$26 as __iconNode, Banknote as default };
|
|
}
|
|
|
|
declare const __iconNode$25: IconNode;
|
|
/**
|
|
* @component @name BanknoteX
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/banknote-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 BanknoteX: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_banknote_x {
|
|
export { __iconNode$25 as __iconNode, BanknoteX as default };
|
|
}
|
|
|
|
declare const __iconNode$24: IconNode;
|
|
/**
|
|
* @component @name BanknoteArrowUp
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/banknote-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 BanknoteArrowUp: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_banknote_arrow_up {
|
|
export { __iconNode$24 as __iconNode, BanknoteArrowUp as default };
|
|
}
|
|
|
|
declare const __iconNode$23: IconNode;
|
|
/**
|
|
* @component @name BanknoteArrowDown
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
*
|
|
* @preview  - https://lucide.dev/icons/banknote-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 BanknoteArrowDown: react.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
declare namespace __icons_banknote_arrow_down {
|
|
export { __iconNode$23 as __iconNode, BanknoteArrowDown as default };
|
|
}
|
|
|
|
declare const __iconNode$22: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_bandage {
|
|
export { __iconNode$22 as __iconNode, Bandage as default };
|
|
}
|
|
|
|
declare const __iconNode$21: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_banana {
|
|
export { __iconNode$21 as __iconNode, Banana as default };
|
|
}
|
|
|
|
declare const __iconNode$20: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ban {
|
|
export { __iconNode$20 as __iconNode, Ban as default };
|
|
}
|
|
|
|
declare const __iconNode$1$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_baggage_claim {
|
|
export { __iconNode$1$ as __iconNode, BaggageClaim as default };
|
|
}
|
|
|
|
declare const __iconNode$1_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_badge {
|
|
export { __iconNode$1_ as __iconNode, Badge as default };
|
|
}
|
|
|
|
declare const __iconNode$1Z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_badge_x {
|
|
export { __iconNode$1Z as __iconNode, BadgeX as default };
|
|
}
|
|
|
|
declare const __iconNode$1Y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_badge_swiss_franc {
|
|
export { __iconNode$1Y as __iconNode, BadgeSwissFranc as default };
|
|
}
|
|
|
|
declare const __iconNode$1X: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_badge_russian_ruble {
|
|
export { __iconNode$1X as __iconNode, BadgeRussianRuble as default };
|
|
}
|
|
|
|
declare const __iconNode$1W: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_badge_pound_sterling {
|
|
export { __iconNode$1W as __iconNode, BadgePoundSterling as default };
|
|
}
|
|
|
|
declare const __iconNode$1V: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_badge_plus {
|
|
export { __iconNode$1V as __iconNode, BadgePlus as default };
|
|
}
|
|
|
|
declare const __iconNode$1U: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_badge_percent {
|
|
export { __iconNode$1U as __iconNode, BadgePercent as default };
|
|
}
|
|
|
|
declare const __iconNode$1T: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_badge_minus {
|
|
export { __iconNode$1T as __iconNode, BadgeMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$1S: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_badge_japanese_yen {
|
|
export { __iconNode$1S as __iconNode, BadgeJapaneseYen as default };
|
|
}
|
|
|
|
declare const __iconNode$1R: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_badge_info {
|
|
export { __iconNode$1R as __iconNode, BadgeInfo as default };
|
|
}
|
|
|
|
declare const __iconNode$1Q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_badge_indian_rupee {
|
|
export { __iconNode$1Q as __iconNode, BadgeIndianRupee as default };
|
|
}
|
|
|
|
declare const __iconNode$1P: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_badge_help {
|
|
export { __iconNode$1P as __iconNode, BadgeHelp as default };
|
|
}
|
|
|
|
declare const __iconNode$1O: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_badge_euro {
|
|
export { __iconNode$1O as __iconNode, BadgeEuro as default };
|
|
}
|
|
|
|
declare const __iconNode$1N: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_badge_dollar_sign {
|
|
export { __iconNode$1N as __iconNode, BadgeDollarSign as default };
|
|
}
|
|
|
|
declare const __iconNode$1M: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_badge_check {
|
|
export { __iconNode$1M as __iconNode, BadgeCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$1L: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_badge_cent {
|
|
export { __iconNode$1L as __iconNode, BadgeCent as default };
|
|
}
|
|
|
|
declare const __iconNode$1K: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_badge_alert {
|
|
export { __iconNode$1K as __iconNode, BadgeAlert as default };
|
|
}
|
|
|
|
declare const __iconNode$1J: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_backpack {
|
|
export { __iconNode$1J as __iconNode, Backpack as default };
|
|
}
|
|
|
|
declare const __iconNode$1I: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_baby {
|
|
export { __iconNode$1I as __iconNode, Baby as default };
|
|
}
|
|
|
|
declare const __iconNode$1H: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_axis_3d {
|
|
export { __iconNode$1H as __iconNode, Axis3d as default };
|
|
}
|
|
|
|
declare const __iconNode$1G: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_axe {
|
|
export { __iconNode$1G as __iconNode, Axe as default };
|
|
}
|
|
|
|
declare const __iconNode$1F: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_award {
|
|
export { __iconNode$1F as __iconNode, Award as default };
|
|
}
|
|
|
|
declare const __iconNode$1E: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_audio_waveform {
|
|
export { __iconNode$1E as __iconNode, AudioWaveform as default };
|
|
}
|
|
|
|
declare const __iconNode$1D: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_audio_lines {
|
|
export { __iconNode$1D as __iconNode, AudioLines as default };
|
|
}
|
|
|
|
declare const __iconNode$1C: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_atom {
|
|
export { __iconNode$1C as __iconNode, Atom as default };
|
|
}
|
|
|
|
declare const __iconNode$1B: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_at_sign {
|
|
export { __iconNode$1B as __iconNode, AtSign as default };
|
|
}
|
|
|
|
declare const __iconNode$1A: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_asterisk {
|
|
export { __iconNode$1A as __iconNode, Asterisk as default };
|
|
}
|
|
|
|
declare const __iconNode$1z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrows_up_from_line {
|
|
export { __iconNode$1z as __iconNode, ArrowsUpFromLine as default };
|
|
}
|
|
|
|
declare const __iconNode$1y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_up {
|
|
export { __iconNode$1y as __iconNode, ArrowUp as default };
|
|
}
|
|
|
|
declare const __iconNode$1x: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_up_z_a {
|
|
export { __iconNode$1x as __iconNode, ArrowUpZA as default };
|
|
}
|
|
|
|
declare const __iconNode$1w: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_up_wide_narrow {
|
|
export { __iconNode$1w as __iconNode, ArrowUpWideNarrow as default };
|
|
}
|
|
|
|
declare const __iconNode$1v: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_up_to_line {
|
|
export { __iconNode$1v as __iconNode, ArrowUpToLine as default };
|
|
}
|
|
|
|
declare const __iconNode$1u: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_up_right {
|
|
export { __iconNode$1u as __iconNode, ArrowUpRight as default };
|
|
}
|
|
|
|
declare const __iconNode$1t: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_up_narrow_wide {
|
|
export { __iconNode$1t as __iconNode, ArrowUpNarrowWide as default };
|
|
}
|
|
|
|
declare const __iconNode$1s: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_up_left {
|
|
export { __iconNode$1s as __iconNode, ArrowUpLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$1r: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_up_from_line {
|
|
export { __iconNode$1r as __iconNode, ArrowUpFromLine as default };
|
|
}
|
|
|
|
declare const __iconNode$1q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_up_from_dot {
|
|
export { __iconNode$1q as __iconNode, ArrowUpFromDot as default };
|
|
}
|
|
|
|
declare const __iconNode$1p: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_up_down {
|
|
export { __iconNode$1p as __iconNode, ArrowUpDown as default };
|
|
}
|
|
|
|
declare const __iconNode$1o: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_up_a_z {
|
|
export { __iconNode$1o as __iconNode, ArrowUpAZ as default };
|
|
}
|
|
|
|
declare const __iconNode$1n: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_up_1_0 {
|
|
export { __iconNode$1n as __iconNode, ArrowUp10 as default };
|
|
}
|
|
|
|
declare const __iconNode$1m: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_up_0_1 {
|
|
export { __iconNode$1m as __iconNode, ArrowUp01 as default };
|
|
}
|
|
|
|
declare const __iconNode$1l: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_right {
|
|
export { __iconNode$1l as __iconNode, ArrowRight as default };
|
|
}
|
|
|
|
declare const __iconNode$1k: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_right_to_line {
|
|
export { __iconNode$1k as __iconNode, ArrowRightToLine as default };
|
|
}
|
|
|
|
declare const __iconNode$1j: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_right_left {
|
|
export { __iconNode$1j as __iconNode, ArrowRightLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$1i: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_right_from_line {
|
|
export { __iconNode$1i as __iconNode, ArrowRightFromLine as default };
|
|
}
|
|
|
|
declare const __iconNode$1h: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_left {
|
|
export { __iconNode$1h as __iconNode, ArrowLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$1g: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_left_to_line {
|
|
export { __iconNode$1g as __iconNode, ArrowLeftToLine as default };
|
|
}
|
|
|
|
declare const __iconNode$1f: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_left_right {
|
|
export { __iconNode$1f as __iconNode, ArrowLeftRight as default };
|
|
}
|
|
|
|
declare const __iconNode$1e: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_left_from_line {
|
|
export { __iconNode$1e as __iconNode, ArrowLeftFromLine as default };
|
|
}
|
|
|
|
declare const __iconNode$1d: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_down {
|
|
export { __iconNode$1d as __iconNode, ArrowDown as default };
|
|
}
|
|
|
|
declare const __iconNode$1c: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_down_z_a {
|
|
export { __iconNode$1c as __iconNode, ArrowDownZA as default };
|
|
}
|
|
|
|
declare const __iconNode$1b: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_down_wide_narrow {
|
|
export { __iconNode$1b as __iconNode, ArrowDownWideNarrow as default };
|
|
}
|
|
|
|
declare const __iconNode$1a: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_down_up {
|
|
export { __iconNode$1a as __iconNode, ArrowDownUp as default };
|
|
}
|
|
|
|
declare const __iconNode$19: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_down_to_line {
|
|
export { __iconNode$19 as __iconNode, ArrowDownToLine as default };
|
|
}
|
|
|
|
declare const __iconNode$18: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_down_to_dot {
|
|
export { __iconNode$18 as __iconNode, ArrowDownToDot as default };
|
|
}
|
|
|
|
declare const __iconNode$17: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_down_right {
|
|
export { __iconNode$17 as __iconNode, ArrowDownRight as default };
|
|
}
|
|
|
|
declare const __iconNode$16: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_down_narrow_wide {
|
|
export { __iconNode$16 as __iconNode, ArrowDownNarrowWide as default };
|
|
}
|
|
|
|
declare const __iconNode$15: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_down_left {
|
|
export { __iconNode$15 as __iconNode, ArrowDownLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$14: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_down_from_line {
|
|
export { __iconNode$14 as __iconNode, ArrowDownFromLine as default };
|
|
}
|
|
|
|
declare const __iconNode$13: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_down_a_z {
|
|
export { __iconNode$13 as __iconNode, ArrowDownAZ as default };
|
|
}
|
|
|
|
declare const __iconNode$12: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_down_1_0 {
|
|
export { __iconNode$12 as __iconNode, ArrowDown10 as default };
|
|
}
|
|
|
|
declare const __iconNode$11: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_down_0_1 {
|
|
export { __iconNode$11 as __iconNode, ArrowDown01 as default };
|
|
}
|
|
|
|
declare const __iconNode$10: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_big_up {
|
|
export { __iconNode$10 as __iconNode, ArrowBigUp as default };
|
|
}
|
|
|
|
declare const __iconNode$$: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_big_up_dash {
|
|
export { __iconNode$$ as __iconNode, ArrowBigUpDash as default };
|
|
}
|
|
|
|
declare const __iconNode$_: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_big_right {
|
|
export { __iconNode$_ as __iconNode, ArrowBigRight as default };
|
|
}
|
|
|
|
declare const __iconNode$Z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_big_right_dash {
|
|
export { __iconNode$Z as __iconNode, ArrowBigRightDash as default };
|
|
}
|
|
|
|
declare const __iconNode$Y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_big_left {
|
|
export { __iconNode$Y as __iconNode, ArrowBigLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$X: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_big_left_dash {
|
|
export { __iconNode$X as __iconNode, ArrowBigLeftDash as default };
|
|
}
|
|
|
|
declare const __iconNode$W: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_big_down {
|
|
export { __iconNode$W as __iconNode, ArrowBigDown as default };
|
|
}
|
|
|
|
declare const __iconNode$V: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_arrow_big_down_dash {
|
|
export { __iconNode$V as __iconNode, ArrowBigDownDash as default };
|
|
}
|
|
|
|
declare const __iconNode$U: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_armchair {
|
|
export { __iconNode$U as __iconNode, Armchair as default };
|
|
}
|
|
|
|
declare const __iconNode$T: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_archive {
|
|
export { __iconNode$T as __iconNode, Archive as default };
|
|
}
|
|
|
|
declare const __iconNode$S: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_archive_x {
|
|
export { __iconNode$S as __iconNode, ArchiveX as default };
|
|
}
|
|
|
|
declare const __iconNode$R: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_archive_restore {
|
|
export { __iconNode$R as __iconNode, ArchiveRestore as default };
|
|
}
|
|
|
|
declare const __iconNode$Q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_apple {
|
|
export { __iconNode$Q as __iconNode, Apple as default };
|
|
}
|
|
|
|
declare const __iconNode$P: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_app_window {
|
|
export { __iconNode$P as __iconNode, AppWindow as default };
|
|
}
|
|
|
|
declare const __iconNode$O: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_app_window_mac {
|
|
export { __iconNode$O as __iconNode, AppWindowMac as default };
|
|
}
|
|
|
|
declare const __iconNode$N: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_aperture {
|
|
export { __iconNode$N as __iconNode, Aperture as default };
|
|
}
|
|
|
|
declare const __iconNode$M: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_anvil {
|
|
export { __iconNode$M as __iconNode, Anvil as default };
|
|
}
|
|
|
|
declare const __iconNode$L: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_antenna {
|
|
export { __iconNode$L as __iconNode, Antenna as default };
|
|
}
|
|
|
|
declare const __iconNode$K: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_annoyed {
|
|
export { __iconNode$K as __iconNode, Annoyed as default };
|
|
}
|
|
|
|
declare const __iconNode$J: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_angry {
|
|
export { __iconNode$J as __iconNode, Angry as default };
|
|
}
|
|
|
|
declare const __iconNode$I: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_anchor {
|
|
export { __iconNode$I as __iconNode, Anchor as default };
|
|
}
|
|
|
|
declare const __iconNode$H: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_amphora {
|
|
export { __iconNode$H as __iconNode, Amphora as default };
|
|
}
|
|
|
|
declare const __iconNode$G: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ampersands {
|
|
export { __iconNode$G as __iconNode, Ampersands as default };
|
|
}
|
|
|
|
declare const __iconNode$F: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ampersand {
|
|
export { __iconNode$F as __iconNode, Ampersand as default };
|
|
}
|
|
|
|
declare const __iconNode$E: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_ambulance {
|
|
export { __iconNode$E as __iconNode, Ambulance as default };
|
|
}
|
|
|
|
declare const __iconNode$D: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_vertical_space_between {
|
|
export { __iconNode$D as __iconNode, AlignVerticalSpaceBetween as default };
|
|
}
|
|
|
|
declare const __iconNode$C: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_vertical_space_around {
|
|
export { __iconNode$C as __iconNode, AlignVerticalSpaceAround as default };
|
|
}
|
|
|
|
declare const __iconNode$B: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_vertical_justify_start {
|
|
export { __iconNode$B as __iconNode, AlignVerticalJustifyStart as default };
|
|
}
|
|
|
|
declare const __iconNode$A: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_vertical_justify_end {
|
|
export { __iconNode$A as __iconNode, AlignVerticalJustifyEnd as default };
|
|
}
|
|
|
|
declare const __iconNode$z: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_vertical_justify_center {
|
|
export { __iconNode$z as __iconNode, AlignVerticalJustifyCenter as default };
|
|
}
|
|
|
|
declare const __iconNode$y: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_vertical_distribute_start {
|
|
export { __iconNode$y as __iconNode, AlignVerticalDistributeStart as default };
|
|
}
|
|
|
|
declare const __iconNode$x: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_vertical_distribute_end {
|
|
export { __iconNode$x as __iconNode, AlignVerticalDistributeEnd as default };
|
|
}
|
|
|
|
declare const __iconNode$w: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_vertical_distribute_center {
|
|
export { __iconNode$w as __iconNode, AlignVerticalDistributeCenter as default };
|
|
}
|
|
|
|
declare const __iconNode$v: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_start_vertical {
|
|
export { __iconNode$v as __iconNode, AlignStartVertical as default };
|
|
}
|
|
|
|
declare const __iconNode$u: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_start_horizontal {
|
|
export { __iconNode$u as __iconNode, AlignStartHorizontal as default };
|
|
}
|
|
|
|
declare const __iconNode$t: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_right {
|
|
export { __iconNode$t as __iconNode, AlignRight as default };
|
|
}
|
|
|
|
declare const __iconNode$s: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_left {
|
|
export { __iconNode$s as __iconNode, AlignLeft as default };
|
|
}
|
|
|
|
declare const __iconNode$r: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_justify {
|
|
export { __iconNode$r as __iconNode, AlignJustify as default };
|
|
}
|
|
|
|
declare const __iconNode$q: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_horizontal_space_between {
|
|
export { __iconNode$q as __iconNode, AlignHorizontalSpaceBetween as default };
|
|
}
|
|
|
|
declare const __iconNode$p: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_horizontal_space_around {
|
|
export { __iconNode$p as __iconNode, AlignHorizontalSpaceAround as default };
|
|
}
|
|
|
|
declare const __iconNode$o: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_horizontal_justify_start {
|
|
export { __iconNode$o as __iconNode, AlignHorizontalJustifyStart as default };
|
|
}
|
|
|
|
declare const __iconNode$n: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_horizontal_justify_end {
|
|
export { __iconNode$n as __iconNode, AlignHorizontalJustifyEnd as default };
|
|
}
|
|
|
|
declare const __iconNode$m: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_horizontal_justify_center {
|
|
export { __iconNode$m as __iconNode, AlignHorizontalJustifyCenter as default };
|
|
}
|
|
|
|
declare const __iconNode$l: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_horizontal_distribute_start {
|
|
export { __iconNode$l as __iconNode, AlignHorizontalDistributeStart as default };
|
|
}
|
|
|
|
declare const __iconNode$k: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_horizontal_distribute_end {
|
|
export { __iconNode$k as __iconNode, AlignHorizontalDistributeEnd as default };
|
|
}
|
|
|
|
declare const __iconNode$j: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_horizontal_distribute_center {
|
|
export { __iconNode$j as __iconNode, AlignHorizontalDistributeCenter as default };
|
|
}
|
|
|
|
declare const __iconNode$i: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_end_vertical {
|
|
export { __iconNode$i as __iconNode, AlignEndVertical as default };
|
|
}
|
|
|
|
declare const __iconNode$h: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_end_horizontal {
|
|
export { __iconNode$h as __iconNode, AlignEndHorizontal as default };
|
|
}
|
|
|
|
declare const __iconNode$g: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_center {
|
|
export { __iconNode$g as __iconNode, AlignCenter as default };
|
|
}
|
|
|
|
declare const __iconNode$f: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_center_vertical {
|
|
export { __iconNode$f as __iconNode, AlignCenterVertical as default };
|
|
}
|
|
|
|
declare const __iconNode$e: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_align_center_horizontal {
|
|
export { __iconNode$e as __iconNode, AlignCenterHorizontal as default };
|
|
}
|
|
|
|
declare const __iconNode$d: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_album {
|
|
export { __iconNode$d as __iconNode, Album as default };
|
|
}
|
|
|
|
declare const __iconNode$c: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_alarm_smoke {
|
|
export { __iconNode$c as __iconNode, AlarmSmoke as default };
|
|
}
|
|
|
|
declare const __iconNode$b: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_alarm_clock {
|
|
export { __iconNode$b as __iconNode, AlarmClock as default };
|
|
}
|
|
|
|
declare const __iconNode$a: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_alarm_clock_plus {
|
|
export { __iconNode$a as __iconNode, AlarmClockPlus as default };
|
|
}
|
|
|
|
declare const __iconNode$9: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_alarm_clock_off {
|
|
export { __iconNode$9 as __iconNode, AlarmClockOff as default };
|
|
}
|
|
|
|
declare const __iconNode$8: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_alarm_clock_minus {
|
|
export { __iconNode$8 as __iconNode, AlarmClockMinus as default };
|
|
}
|
|
|
|
declare const __iconNode$7: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_alarm_clock_check {
|
|
export { __iconNode$7 as __iconNode, AlarmClockCheck as default };
|
|
}
|
|
|
|
declare const __iconNode$6: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_airplay {
|
|
export { __iconNode$6 as __iconNode, Airplay as default };
|
|
}
|
|
|
|
declare const __iconNode$5: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_air_vent {
|
|
export { __iconNode$5 as __iconNode, AirVent as default };
|
|
}
|
|
|
|
declare const __iconNode$4: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_activity {
|
|
export { __iconNode$4 as __iconNode, Activity as default };
|
|
}
|
|
|
|
declare const __iconNode$3: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_accessibility {
|
|
export { __iconNode$3 as __iconNode, Accessibility as default };
|
|
}
|
|
|
|
declare const __iconNode$2: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_a_large_small {
|
|
export { __iconNode$2 as __iconNode, ALargeSmall as default };
|
|
}
|
|
|
|
declare const __iconNode$1: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare namespace __icons_a_arrow_up {
|
|
export { __iconNode$1 as __iconNode, AArrowUp as default };
|
|
}
|
|
|
|
declare const __iconNode: IconNode;
|
|
/**
|
|
* @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>>;
|
|
|
|
declare const __icons_a_arrow_down___iconNode: typeof __iconNode;
|
|
declare namespace __icons_a_arrow_down {
|
|
export { __icons_a_arrow_down___iconNode as __iconNode, AArrowDown as default };
|
|
}
|
|
|
|
declare const dynamicIconImports: {
|
|
'a-arrow-down': () => Promise<typeof __icons_a_arrow_down>;
|
|
'a-arrow-up': () => Promise<typeof __icons_a_arrow_up>;
|
|
'a-large-small': () => Promise<typeof __icons_a_large_small>;
|
|
accessibility: () => Promise<typeof __icons_accessibility>;
|
|
activity: () => Promise<typeof __icons_activity>;
|
|
'air-vent': () => Promise<typeof __icons_air_vent>;
|
|
airplay: () => Promise<typeof __icons_airplay>;
|
|
'alarm-clock-check': () => Promise<typeof __icons_alarm_clock_check>;
|
|
'alarm-check': () => Promise<typeof __icons_alarm_clock_check>;
|
|
'alarm-clock-minus': () => Promise<typeof __icons_alarm_clock_minus>;
|
|
'alarm-minus': () => Promise<typeof __icons_alarm_clock_minus>;
|
|
'alarm-clock-off': () => Promise<typeof __icons_alarm_clock_off>;
|
|
'alarm-clock-plus': () => Promise<typeof __icons_alarm_clock_plus>;
|
|
'alarm-plus': () => Promise<typeof __icons_alarm_clock_plus>;
|
|
'alarm-clock': () => Promise<typeof __icons_alarm_clock>;
|
|
'alarm-smoke': () => Promise<typeof __icons_alarm_smoke>;
|
|
album: () => Promise<typeof __icons_album>;
|
|
'align-center-horizontal': () => Promise<typeof __icons_align_center_horizontal>;
|
|
'align-center-vertical': () => Promise<typeof __icons_align_center_vertical>;
|
|
'align-center': () => Promise<typeof __icons_align_center>;
|
|
'align-end-horizontal': () => Promise<typeof __icons_align_end_horizontal>;
|
|
'align-end-vertical': () => Promise<typeof __icons_align_end_vertical>;
|
|
'align-horizontal-distribute-center': () => Promise<typeof __icons_align_horizontal_distribute_center>;
|
|
'align-horizontal-distribute-end': () => Promise<typeof __icons_align_horizontal_distribute_end>;
|
|
'align-horizontal-distribute-start': () => Promise<typeof __icons_align_horizontal_distribute_start>;
|
|
'align-horizontal-justify-center': () => Promise<typeof __icons_align_horizontal_justify_center>;
|
|
'align-horizontal-justify-end': () => Promise<typeof __icons_align_horizontal_justify_end>;
|
|
'align-horizontal-justify-start': () => Promise<typeof __icons_align_horizontal_justify_start>;
|
|
'align-horizontal-space-around': () => Promise<typeof __icons_align_horizontal_space_around>;
|
|
'align-horizontal-space-between': () => Promise<typeof __icons_align_horizontal_space_between>;
|
|
'align-justify': () => Promise<typeof __icons_align_justify>;
|
|
'align-left': () => Promise<typeof __icons_align_left>;
|
|
'align-right': () => Promise<typeof __icons_align_right>;
|
|
'align-start-horizontal': () => Promise<typeof __icons_align_start_horizontal>;
|
|
'align-start-vertical': () => Promise<typeof __icons_align_start_vertical>;
|
|
'align-vertical-distribute-center': () => Promise<typeof __icons_align_vertical_distribute_center>;
|
|
'align-vertical-distribute-end': () => Promise<typeof __icons_align_vertical_distribute_end>;
|
|
'align-vertical-distribute-start': () => Promise<typeof __icons_align_vertical_distribute_start>;
|
|
'align-vertical-justify-center': () => Promise<typeof __icons_align_vertical_justify_center>;
|
|
'align-vertical-justify-end': () => Promise<typeof __icons_align_vertical_justify_end>;
|
|
'align-vertical-justify-start': () => Promise<typeof __icons_align_vertical_justify_start>;
|
|
'align-vertical-space-around': () => Promise<typeof __icons_align_vertical_space_around>;
|
|
'align-vertical-space-between': () => Promise<typeof __icons_align_vertical_space_between>;
|
|
ambulance: () => Promise<typeof __icons_ambulance>;
|
|
ampersand: () => Promise<typeof __icons_ampersand>;
|
|
ampersands: () => Promise<typeof __icons_ampersands>;
|
|
amphora: () => Promise<typeof __icons_amphora>;
|
|
anchor: () => Promise<typeof __icons_anchor>;
|
|
angry: () => Promise<typeof __icons_angry>;
|
|
annoyed: () => Promise<typeof __icons_annoyed>;
|
|
antenna: () => Promise<typeof __icons_antenna>;
|
|
anvil: () => Promise<typeof __icons_anvil>;
|
|
aperture: () => Promise<typeof __icons_aperture>;
|
|
'app-window-mac': () => Promise<typeof __icons_app_window_mac>;
|
|
'app-window': () => Promise<typeof __icons_app_window>;
|
|
apple: () => Promise<typeof __icons_apple>;
|
|
'archive-restore': () => Promise<typeof __icons_archive_restore>;
|
|
'archive-x': () => Promise<typeof __icons_archive_x>;
|
|
archive: () => Promise<typeof __icons_archive>;
|
|
armchair: () => Promise<typeof __icons_armchair>;
|
|
'arrow-big-down-dash': () => Promise<typeof __icons_arrow_big_down_dash>;
|
|
'arrow-big-down': () => Promise<typeof __icons_arrow_big_down>;
|
|
'arrow-big-left-dash': () => Promise<typeof __icons_arrow_big_left_dash>;
|
|
'arrow-big-left': () => Promise<typeof __icons_arrow_big_left>;
|
|
'arrow-big-right-dash': () => Promise<typeof __icons_arrow_big_right_dash>;
|
|
'arrow-big-right': () => Promise<typeof __icons_arrow_big_right>;
|
|
'arrow-big-up-dash': () => Promise<typeof __icons_arrow_big_up_dash>;
|
|
'arrow-big-up': () => Promise<typeof __icons_arrow_big_up>;
|
|
'arrow-down-0-1': () => Promise<typeof __icons_arrow_down_0_1>;
|
|
'arrow-down-01': () => Promise<typeof __icons_arrow_down_0_1>;
|
|
'arrow-down-1-0': () => Promise<typeof __icons_arrow_down_1_0>;
|
|
'arrow-down-10': () => Promise<typeof __icons_arrow_down_1_0>;
|
|
'arrow-down-a-z': () => Promise<typeof __icons_arrow_down_a_z>;
|
|
'arrow-down-az': () => Promise<typeof __icons_arrow_down_a_z>;
|
|
'arrow-down-from-line': () => Promise<typeof __icons_arrow_down_from_line>;
|
|
'arrow-down-left': () => Promise<typeof __icons_arrow_down_left>;
|
|
'arrow-down-narrow-wide': () => Promise<typeof __icons_arrow_down_narrow_wide>;
|
|
'arrow-down-right': () => Promise<typeof __icons_arrow_down_right>;
|
|
'arrow-down-to-dot': () => Promise<typeof __icons_arrow_down_to_dot>;
|
|
'arrow-down-to-line': () => Promise<typeof __icons_arrow_down_to_line>;
|
|
'arrow-down-up': () => Promise<typeof __icons_arrow_down_up>;
|
|
'arrow-down-wide-narrow': () => Promise<typeof __icons_arrow_down_wide_narrow>;
|
|
'sort-desc': () => Promise<typeof __icons_arrow_down_wide_narrow>;
|
|
'arrow-down-z-a': () => Promise<typeof __icons_arrow_down_z_a>;
|
|
'arrow-down-za': () => Promise<typeof __icons_arrow_down_z_a>;
|
|
'arrow-down': () => Promise<typeof __icons_arrow_down>;
|
|
'arrow-left-from-line': () => Promise<typeof __icons_arrow_left_from_line>;
|
|
'arrow-left-right': () => Promise<typeof __icons_arrow_left_right>;
|
|
'arrow-left-to-line': () => Promise<typeof __icons_arrow_left_to_line>;
|
|
'arrow-left': () => Promise<typeof __icons_arrow_left>;
|
|
'arrow-right-from-line': () => Promise<typeof __icons_arrow_right_from_line>;
|
|
'arrow-right-left': () => Promise<typeof __icons_arrow_right_left>;
|
|
'arrow-right-to-line': () => Promise<typeof __icons_arrow_right_to_line>;
|
|
'arrow-right': () => Promise<typeof __icons_arrow_right>;
|
|
'arrow-up-0-1': () => Promise<typeof __icons_arrow_up_0_1>;
|
|
'arrow-up-01': () => Promise<typeof __icons_arrow_up_0_1>;
|
|
'arrow-up-1-0': () => Promise<typeof __icons_arrow_up_1_0>;
|
|
'arrow-up-10': () => Promise<typeof __icons_arrow_up_1_0>;
|
|
'arrow-up-a-z': () => Promise<typeof __icons_arrow_up_a_z>;
|
|
'arrow-up-az': () => Promise<typeof __icons_arrow_up_a_z>;
|
|
'arrow-up-down': () => Promise<typeof __icons_arrow_up_down>;
|
|
'arrow-up-from-dot': () => Promise<typeof __icons_arrow_up_from_dot>;
|
|
'arrow-up-from-line': () => Promise<typeof __icons_arrow_up_from_line>;
|
|
'arrow-up-left': () => Promise<typeof __icons_arrow_up_left>;
|
|
'arrow-up-narrow-wide': () => Promise<typeof __icons_arrow_up_narrow_wide>;
|
|
'sort-asc': () => Promise<typeof __icons_arrow_up_narrow_wide>;
|
|
'arrow-up-right': () => Promise<typeof __icons_arrow_up_right>;
|
|
'arrow-up-to-line': () => Promise<typeof __icons_arrow_up_to_line>;
|
|
'arrow-up-wide-narrow': () => Promise<typeof __icons_arrow_up_wide_narrow>;
|
|
'arrow-up-z-a': () => Promise<typeof __icons_arrow_up_z_a>;
|
|
'arrow-up-za': () => Promise<typeof __icons_arrow_up_z_a>;
|
|
'arrow-up': () => Promise<typeof __icons_arrow_up>;
|
|
'arrows-up-from-line': () => Promise<typeof __icons_arrows_up_from_line>;
|
|
asterisk: () => Promise<typeof __icons_asterisk>;
|
|
'at-sign': () => Promise<typeof __icons_at_sign>;
|
|
atom: () => Promise<typeof __icons_atom>;
|
|
'audio-lines': () => Promise<typeof __icons_audio_lines>;
|
|
'audio-waveform': () => Promise<typeof __icons_audio_waveform>;
|
|
award: () => Promise<typeof __icons_award>;
|
|
axe: () => Promise<typeof __icons_axe>;
|
|
'axis-3d': () => Promise<typeof __icons_axis_3d>;
|
|
'axis-3-d': () => Promise<typeof __icons_axis_3d>;
|
|
baby: () => Promise<typeof __icons_baby>;
|
|
backpack: () => Promise<typeof __icons_backpack>;
|
|
'badge-alert': () => Promise<typeof __icons_badge_alert>;
|
|
'badge-cent': () => Promise<typeof __icons_badge_cent>;
|
|
'badge-check': () => Promise<typeof __icons_badge_check>;
|
|
verified: () => Promise<typeof __icons_badge_check>;
|
|
'badge-dollar-sign': () => Promise<typeof __icons_badge_dollar_sign>;
|
|
'badge-euro': () => Promise<typeof __icons_badge_euro>;
|
|
'badge-help': () => Promise<typeof __icons_badge_help>;
|
|
'badge-indian-rupee': () => Promise<typeof __icons_badge_indian_rupee>;
|
|
'badge-info': () => Promise<typeof __icons_badge_info>;
|
|
'badge-japanese-yen': () => Promise<typeof __icons_badge_japanese_yen>;
|
|
'badge-minus': () => Promise<typeof __icons_badge_minus>;
|
|
'badge-percent': () => Promise<typeof __icons_badge_percent>;
|
|
'badge-plus': () => Promise<typeof __icons_badge_plus>;
|
|
'badge-pound-sterling': () => Promise<typeof __icons_badge_pound_sterling>;
|
|
'badge-russian-ruble': () => Promise<typeof __icons_badge_russian_ruble>;
|
|
'badge-swiss-franc': () => Promise<typeof __icons_badge_swiss_franc>;
|
|
'badge-x': () => Promise<typeof __icons_badge_x>;
|
|
badge: () => Promise<typeof __icons_badge>;
|
|
'baggage-claim': () => Promise<typeof __icons_baggage_claim>;
|
|
ban: () => Promise<typeof __icons_ban>;
|
|
banana: () => Promise<typeof __icons_banana>;
|
|
bandage: () => Promise<typeof __icons_bandage>;
|
|
'banknote-arrow-down': () => Promise<typeof __icons_banknote_arrow_down>;
|
|
'banknote-arrow-up': () => Promise<typeof __icons_banknote_arrow_up>;
|
|
'banknote-x': () => Promise<typeof __icons_banknote_x>;
|
|
banknote: () => Promise<typeof __icons_banknote>;
|
|
barcode: () => Promise<typeof __icons_barcode>;
|
|
baseline: () => Promise<typeof __icons_baseline>;
|
|
bath: () => Promise<typeof __icons_bath>;
|
|
'battery-charging': () => Promise<typeof __icons_battery_charging>;
|
|
'battery-full': () => Promise<typeof __icons_battery_full>;
|
|
'battery-low': () => Promise<typeof __icons_battery_low>;
|
|
'battery-medium': () => Promise<typeof __icons_battery_medium>;
|
|
'battery-plus': () => Promise<typeof __icons_battery_plus>;
|
|
'battery-warning': () => Promise<typeof __icons_battery_warning>;
|
|
battery: () => Promise<typeof __icons_battery>;
|
|
beaker: () => Promise<typeof __icons_beaker>;
|
|
'bean-off': () => Promise<typeof __icons_bean_off>;
|
|
bean: () => Promise<typeof __icons_bean>;
|
|
'bed-double': () => Promise<typeof __icons_bed_double>;
|
|
'bed-single': () => Promise<typeof __icons_bed_single>;
|
|
bed: () => Promise<typeof __icons_bed>;
|
|
beef: () => Promise<typeof __icons_beef>;
|
|
'beer-off': () => Promise<typeof __icons_beer_off>;
|
|
beer: () => Promise<typeof __icons_beer>;
|
|
'bell-dot': () => Promise<typeof __icons_bell_dot>;
|
|
'bell-electric': () => Promise<typeof __icons_bell_electric>;
|
|
'bell-minus': () => Promise<typeof __icons_bell_minus>;
|
|
'bell-off': () => Promise<typeof __icons_bell_off>;
|
|
'bell-plus': () => Promise<typeof __icons_bell_plus>;
|
|
'bell-ring': () => Promise<typeof __icons_bell_ring>;
|
|
bell: () => Promise<typeof __icons_bell>;
|
|
'between-horizontal-end': () => Promise<typeof __icons_between_horizontal_end>;
|
|
'between-horizonal-end': () => Promise<typeof __icons_between_horizontal_end>;
|
|
'between-horizontal-start': () => Promise<typeof __icons_between_horizontal_start>;
|
|
'between-horizonal-start': () => Promise<typeof __icons_between_horizontal_start>;
|
|
'between-vertical-end': () => Promise<typeof __icons_between_vertical_end>;
|
|
'between-vertical-start': () => Promise<typeof __icons_between_vertical_start>;
|
|
'biceps-flexed': () => Promise<typeof __icons_biceps_flexed>;
|
|
bike: () => Promise<typeof __icons_bike>;
|
|
binary: () => Promise<typeof __icons_binary>;
|
|
binoculars: () => Promise<typeof __icons_binoculars>;
|
|
biohazard: () => Promise<typeof __icons_biohazard>;
|
|
bird: () => Promise<typeof __icons_bird>;
|
|
bitcoin: () => Promise<typeof __icons_bitcoin>;
|
|
blend: () => Promise<typeof __icons_blend>;
|
|
blinds: () => Promise<typeof __icons_blinds>;
|
|
blocks: () => Promise<typeof __icons_blocks>;
|
|
'bluetooth-connected': () => Promise<typeof __icons_bluetooth_connected>;
|
|
'bluetooth-off': () => Promise<typeof __icons_bluetooth_off>;
|
|
'bluetooth-searching': () => Promise<typeof __icons_bluetooth_searching>;
|
|
bluetooth: () => Promise<typeof __icons_bluetooth>;
|
|
bold: () => Promise<typeof __icons_bold>;
|
|
bolt: () => Promise<typeof __icons_bolt>;
|
|
bomb: () => Promise<typeof __icons_bomb>;
|
|
bone: () => Promise<typeof __icons_bone>;
|
|
'book-a': () => Promise<typeof __icons_book_a>;
|
|
'book-audio': () => Promise<typeof __icons_book_audio>;
|
|
'book-check': () => Promise<typeof __icons_book_check>;
|
|
'book-copy': () => Promise<typeof __icons_book_copy>;
|
|
'book-dashed': () => Promise<typeof __icons_book_dashed>;
|
|
'book-template': () => Promise<typeof __icons_book_dashed>;
|
|
'book-down': () => Promise<typeof __icons_book_down>;
|
|
'book-headphones': () => Promise<typeof __icons_book_headphones>;
|
|
'book-heart': () => Promise<typeof __icons_book_heart>;
|
|
'book-image': () => Promise<typeof __icons_book_image>;
|
|
'book-key': () => Promise<typeof __icons_book_key>;
|
|
'book-lock': () => Promise<typeof __icons_book_lock>;
|
|
'book-marked': () => Promise<typeof __icons_book_marked>;
|
|
'book-minus': () => Promise<typeof __icons_book_minus>;
|
|
'book-open-check': () => Promise<typeof __icons_book_open_check>;
|
|
'book-open-text': () => Promise<typeof __icons_book_open_text>;
|
|
'book-open': () => Promise<typeof __icons_book_open>;
|
|
'book-plus': () => Promise<typeof __icons_book_plus>;
|
|
'book-text': () => Promise<typeof __icons_book_text>;
|
|
'book-type': () => Promise<typeof __icons_book_type>;
|
|
'book-up-2': () => Promise<typeof __icons_book_up_2>;
|
|
'book-up': () => Promise<typeof __icons_book_up>;
|
|
'book-user': () => Promise<typeof __icons_book_user>;
|
|
'book-x': () => Promise<typeof __icons_book_x>;
|
|
book: () => Promise<typeof __icons_book>;
|
|
'bookmark-check': () => Promise<typeof __icons_bookmark_check>;
|
|
'bookmark-minus': () => Promise<typeof __icons_bookmark_minus>;
|
|
'bookmark-plus': () => Promise<typeof __icons_bookmark_plus>;
|
|
'bookmark-x': () => Promise<typeof __icons_bookmark_x>;
|
|
bookmark: () => Promise<typeof __icons_bookmark>;
|
|
'boom-box': () => Promise<typeof __icons_boom_box>;
|
|
'bot-message-square': () => Promise<typeof __icons_bot_message_square>;
|
|
'bot-off': () => Promise<typeof __icons_bot_off>;
|
|
bot: () => Promise<typeof __icons_bot>;
|
|
box: () => Promise<typeof __icons_box>;
|
|
boxes: () => Promise<typeof __icons_boxes>;
|
|
braces: () => Promise<typeof __icons_braces>;
|
|
'curly-braces': () => Promise<typeof __icons_braces>;
|
|
brackets: () => Promise<typeof __icons_brackets>;
|
|
'brain-circuit': () => Promise<typeof __icons_brain_circuit>;
|
|
'brain-cog': () => Promise<typeof __icons_brain_cog>;
|
|
brain: () => Promise<typeof __icons_brain>;
|
|
'brick-wall': () => Promise<typeof __icons_brick_wall>;
|
|
'briefcase-business': () => Promise<typeof __icons_briefcase_business>;
|
|
'briefcase-conveyor-belt': () => Promise<typeof __icons_briefcase_conveyor_belt>;
|
|
'briefcase-medical': () => Promise<typeof __icons_briefcase_medical>;
|
|
briefcase: () => Promise<typeof __icons_briefcase>;
|
|
'bring-to-front': () => Promise<typeof __icons_bring_to_front>;
|
|
brush: () => Promise<typeof __icons_brush>;
|
|
'bug-off': () => Promise<typeof __icons_bug_off>;
|
|
'bug-play': () => Promise<typeof __icons_bug_play>;
|
|
bug: () => Promise<typeof __icons_bug>;
|
|
'building-2': () => Promise<typeof __icons_building_2>;
|
|
building: () => Promise<typeof __icons_building>;
|
|
'bus-front': () => Promise<typeof __icons_bus_front>;
|
|
bus: () => Promise<typeof __icons_bus>;
|
|
'cable-car': () => Promise<typeof __icons_cable_car>;
|
|
cable: () => Promise<typeof __icons_cable>;
|
|
'cake-slice': () => Promise<typeof __icons_cake_slice>;
|
|
cake: () => Promise<typeof __icons_cake>;
|
|
calculator: () => Promise<typeof __icons_calculator>;
|
|
'calendar-1': () => Promise<typeof __icons_calendar_1>;
|
|
'calendar-arrow-down': () => Promise<typeof __icons_calendar_arrow_down>;
|
|
'calendar-arrow-up': () => Promise<typeof __icons_calendar_arrow_up>;
|
|
'calendar-check-2': () => Promise<typeof __icons_calendar_check_2>;
|
|
'calendar-check': () => Promise<typeof __icons_calendar_check>;
|
|
'calendar-clock': () => Promise<typeof __icons_calendar_clock>;
|
|
'calendar-cog': () => Promise<typeof __icons_calendar_cog>;
|
|
'calendar-days': () => Promise<typeof __icons_calendar_days>;
|
|
'calendar-fold': () => Promise<typeof __icons_calendar_fold>;
|
|
'calendar-heart': () => Promise<typeof __icons_calendar_heart>;
|
|
'calendar-minus-2': () => Promise<typeof __icons_calendar_minus_2>;
|
|
'calendar-minus': () => Promise<typeof __icons_calendar_minus>;
|
|
'calendar-off': () => Promise<typeof __icons_calendar_off>;
|
|
'calendar-plus-2': () => Promise<typeof __icons_calendar_plus_2>;
|
|
'calendar-plus': () => Promise<typeof __icons_calendar_plus>;
|
|
'calendar-range': () => Promise<typeof __icons_calendar_range>;
|
|
'calendar-search': () => Promise<typeof __icons_calendar_search>;
|
|
'calendar-sync': () => Promise<typeof __icons_calendar_sync>;
|
|
'calendar-x-2': () => Promise<typeof __icons_calendar_x_2>;
|
|
'calendar-x': () => Promise<typeof __icons_calendar_x>;
|
|
calendar: () => Promise<typeof __icons_calendar>;
|
|
'camera-off': () => Promise<typeof __icons_camera_off>;
|
|
camera: () => Promise<typeof __icons_camera>;
|
|
'candy-cane': () => Promise<typeof __icons_candy_cane>;
|
|
'candy-off': () => Promise<typeof __icons_candy_off>;
|
|
candy: () => Promise<typeof __icons_candy>;
|
|
cannabis: () => Promise<typeof __icons_cannabis>;
|
|
'captions-off': () => Promise<typeof __icons_captions_off>;
|
|
captions: () => Promise<typeof __icons_captions>;
|
|
subtitles: () => Promise<typeof __icons_captions>;
|
|
'car-front': () => Promise<typeof __icons_car_front>;
|
|
'car-taxi-front': () => Promise<typeof __icons_car_taxi_front>;
|
|
car: () => Promise<typeof __icons_car>;
|
|
caravan: () => Promise<typeof __icons_caravan>;
|
|
carrot: () => Promise<typeof __icons_carrot>;
|
|
'case-lower': () => Promise<typeof __icons_case_lower>;
|
|
'case-sensitive': () => Promise<typeof __icons_case_sensitive>;
|
|
'case-upper': () => Promise<typeof __icons_case_upper>;
|
|
'cassette-tape': () => Promise<typeof __icons_cassette_tape>;
|
|
cast: () => Promise<typeof __icons_cast>;
|
|
castle: () => Promise<typeof __icons_castle>;
|
|
cat: () => Promise<typeof __icons_cat>;
|
|
cctv: () => Promise<typeof __icons_cctv>;
|
|
'chart-area': () => Promise<typeof __icons_chart_area>;
|
|
'area-chart': () => Promise<typeof __icons_chart_area>;
|
|
'chart-bar-big': () => Promise<typeof __icons_chart_bar_big>;
|
|
'bar-chart-horizontal-big': () => Promise<typeof __icons_chart_bar_big>;
|
|
'chart-bar-decreasing': () => Promise<typeof __icons_chart_bar_decreasing>;
|
|
'chart-bar-increasing': () => Promise<typeof __icons_chart_bar_increasing>;
|
|
'chart-bar-stacked': () => Promise<typeof __icons_chart_bar_stacked>;
|
|
'chart-bar': () => Promise<typeof __icons_chart_bar>;
|
|
'bar-chart-horizontal': () => Promise<typeof __icons_chart_bar>;
|
|
'chart-candlestick': () => Promise<typeof __icons_chart_candlestick>;
|
|
'candlestick-chart': () => Promise<typeof __icons_chart_candlestick>;
|
|
'chart-column-big': () => Promise<typeof __icons_chart_column_big>;
|
|
'bar-chart-big': () => Promise<typeof __icons_chart_column_big>;
|
|
'chart-column-decreasing': () => Promise<typeof __icons_chart_column_decreasing>;
|
|
'chart-column-increasing': () => Promise<typeof __icons_chart_column_increasing>;
|
|
'bar-chart-4': () => Promise<typeof __icons_chart_column_increasing>;
|
|
'chart-column-stacked': () => Promise<typeof __icons_chart_column_stacked>;
|
|
'chart-column': () => Promise<typeof __icons_chart_column>;
|
|
'bar-chart-3': () => Promise<typeof __icons_chart_column>;
|
|
'chart-gantt': () => Promise<typeof __icons_chart_gantt>;
|
|
'chart-line': () => Promise<typeof __icons_chart_line>;
|
|
'line-chart': () => Promise<typeof __icons_chart_line>;
|
|
'chart-network': () => Promise<typeof __icons_chart_network>;
|
|
'chart-no-axes-column-decreasing': () => Promise<typeof __icons_chart_no_axes_column_decreasing>;
|
|
'chart-no-axes-column-increasing': () => Promise<typeof __icons_chart_no_axes_column_increasing>;
|
|
'bar-chart': () => Promise<typeof __icons_chart_no_axes_column_increasing>;
|
|
'chart-no-axes-column': () => Promise<typeof __icons_chart_no_axes_column>;
|
|
'bar-chart-2': () => Promise<typeof __icons_chart_no_axes_column>;
|
|
'chart-no-axes-combined': () => Promise<typeof __icons_chart_no_axes_combined>;
|
|
'chart-no-axes-gantt': () => Promise<typeof __icons_chart_no_axes_gantt>;
|
|
'gantt-chart': () => Promise<typeof __icons_chart_no_axes_gantt>;
|
|
'chart-pie': () => Promise<typeof __icons_chart_pie>;
|
|
'pie-chart': () => Promise<typeof __icons_chart_pie>;
|
|
'chart-scatter': () => Promise<typeof __icons_chart_scatter>;
|
|
'scatter-chart': () => Promise<typeof __icons_chart_scatter>;
|
|
'chart-spline': () => Promise<typeof __icons_chart_spline>;
|
|
'check-check': () => Promise<typeof __icons_check_check>;
|
|
check: () => Promise<typeof __icons_check>;
|
|
'chef-hat': () => Promise<typeof __icons_chef_hat>;
|
|
cherry: () => Promise<typeof __icons_cherry>;
|
|
'chevron-down': () => Promise<typeof __icons_chevron_down>;
|
|
'chevron-first': () => Promise<typeof __icons_chevron_first>;
|
|
'chevron-last': () => Promise<typeof __icons_chevron_last>;
|
|
'chevron-left': () => Promise<typeof __icons_chevron_left>;
|
|
'chevron-right': () => Promise<typeof __icons_chevron_right>;
|
|
'chevron-up': () => Promise<typeof __icons_chevron_up>;
|
|
'chevrons-down-up': () => Promise<typeof __icons_chevrons_down_up>;
|
|
'chevrons-down': () => Promise<typeof __icons_chevrons_down>;
|
|
'chevrons-left-right-ellipsis': () => Promise<typeof __icons_chevrons_left_right_ellipsis>;
|
|
'chevrons-left-right': () => Promise<typeof __icons_chevrons_left_right>;
|
|
'chevrons-left': () => Promise<typeof __icons_chevrons_left>;
|
|
'chevrons-right-left': () => Promise<typeof __icons_chevrons_right_left>;
|
|
'chevrons-right': () => Promise<typeof __icons_chevrons_right>;
|
|
'chevrons-up-down': () => Promise<typeof __icons_chevrons_up_down>;
|
|
'chevrons-up': () => Promise<typeof __icons_chevrons_up>;
|
|
chrome: () => Promise<typeof __icons_chrome>;
|
|
church: () => Promise<typeof __icons_church>;
|
|
'cigarette-off': () => Promise<typeof __icons_cigarette_off>;
|
|
cigarette: () => Promise<typeof __icons_cigarette>;
|
|
'circle-alert': () => Promise<typeof __icons_circle_alert>;
|
|
'alert-circle': () => Promise<typeof __icons_circle_alert>;
|
|
'circle-arrow-down': () => Promise<typeof __icons_circle_arrow_down>;
|
|
'arrow-down-circle': () => Promise<typeof __icons_circle_arrow_down>;
|
|
'circle-arrow-left': () => Promise<typeof __icons_circle_arrow_left>;
|
|
'arrow-left-circle': () => Promise<typeof __icons_circle_arrow_left>;
|
|
'circle-arrow-out-down-left': () => Promise<typeof __icons_circle_arrow_out_down_left>;
|
|
'arrow-down-left-from-circle': () => Promise<typeof __icons_circle_arrow_out_down_left>;
|
|
'circle-arrow-out-down-right': () => Promise<typeof __icons_circle_arrow_out_down_right>;
|
|
'arrow-down-right-from-circle': () => Promise<typeof __icons_circle_arrow_out_down_right>;
|
|
'circle-arrow-out-up-left': () => Promise<typeof __icons_circle_arrow_out_up_left>;
|
|
'arrow-up-left-from-circle': () => Promise<typeof __icons_circle_arrow_out_up_left>;
|
|
'circle-arrow-out-up-right': () => Promise<typeof __icons_circle_arrow_out_up_right>;
|
|
'arrow-up-right-from-circle': () => Promise<typeof __icons_circle_arrow_out_up_right>;
|
|
'circle-arrow-right': () => Promise<typeof __icons_circle_arrow_right>;
|
|
'arrow-right-circle': () => Promise<typeof __icons_circle_arrow_right>;
|
|
'circle-arrow-up': () => Promise<typeof __icons_circle_arrow_up>;
|
|
'arrow-up-circle': () => Promise<typeof __icons_circle_arrow_up>;
|
|
'circle-check-big': () => Promise<typeof __icons_circle_check_big>;
|
|
'check-circle': () => Promise<typeof __icons_circle_check_big>;
|
|
'circle-check': () => Promise<typeof __icons_circle_check>;
|
|
'check-circle-2': () => Promise<typeof __icons_circle_check>;
|
|
'circle-chevron-down': () => Promise<typeof __icons_circle_chevron_down>;
|
|
'chevron-down-circle': () => Promise<typeof __icons_circle_chevron_down>;
|
|
'circle-chevron-left': () => Promise<typeof __icons_circle_chevron_left>;
|
|
'chevron-left-circle': () => Promise<typeof __icons_circle_chevron_left>;
|
|
'circle-chevron-right': () => Promise<typeof __icons_circle_chevron_right>;
|
|
'chevron-right-circle': () => Promise<typeof __icons_circle_chevron_right>;
|
|
'circle-chevron-up': () => Promise<typeof __icons_circle_chevron_up>;
|
|
'chevron-up-circle': () => Promise<typeof __icons_circle_chevron_up>;
|
|
'circle-dashed': () => Promise<typeof __icons_circle_dashed>;
|
|
'circle-divide': () => Promise<typeof __icons_circle_divide>;
|
|
'divide-circle': () => Promise<typeof __icons_circle_divide>;
|
|
'circle-dollar-sign': () => Promise<typeof __icons_circle_dollar_sign>;
|
|
'circle-dot-dashed': () => Promise<typeof __icons_circle_dot_dashed>;
|
|
'circle-dot': () => Promise<typeof __icons_circle_dot>;
|
|
'circle-ellipsis': () => Promise<typeof __icons_circle_ellipsis>;
|
|
'circle-equal': () => Promise<typeof __icons_circle_equal>;
|
|
'circle-fading-arrow-up': () => Promise<typeof __icons_circle_fading_arrow_up>;
|
|
'circle-fading-plus': () => Promise<typeof __icons_circle_fading_plus>;
|
|
'circle-gauge': () => Promise<typeof __icons_circle_gauge>;
|
|
'gauge-circle': () => Promise<typeof __icons_circle_gauge>;
|
|
'circle-help': () => Promise<typeof __icons_circle_help>;
|
|
'help-circle': () => Promise<typeof __icons_circle_help>;
|
|
'circle-minus': () => Promise<typeof __icons_circle_minus>;
|
|
'minus-circle': () => Promise<typeof __icons_circle_minus>;
|
|
'circle-off': () => Promise<typeof __icons_circle_off>;
|
|
'circle-parking-off': () => Promise<typeof __icons_circle_parking_off>;
|
|
'parking-circle-off': () => Promise<typeof __icons_circle_parking_off>;
|
|
'circle-parking': () => Promise<typeof __icons_circle_parking>;
|
|
'parking-circle': () => Promise<typeof __icons_circle_parking>;
|
|
'circle-pause': () => Promise<typeof __icons_circle_pause>;
|
|
'pause-circle': () => Promise<typeof __icons_circle_pause>;
|
|
'circle-percent': () => Promise<typeof __icons_circle_percent>;
|
|
'percent-circle': () => Promise<typeof __icons_circle_percent>;
|
|
'circle-play': () => Promise<typeof __icons_circle_play>;
|
|
'play-circle': () => Promise<typeof __icons_circle_play>;
|
|
'circle-plus': () => Promise<typeof __icons_circle_plus>;
|
|
'plus-circle': () => Promise<typeof __icons_circle_plus>;
|
|
'circle-power': () => Promise<typeof __icons_circle_power>;
|
|
'power-circle': () => Promise<typeof __icons_circle_power>;
|
|
'circle-slash-2': () => Promise<typeof __icons_circle_slash_2>;
|
|
'circle-slashed': () => Promise<typeof __icons_circle_slash_2>;
|
|
'circle-slash': () => Promise<typeof __icons_circle_slash>;
|
|
'circle-small': () => Promise<typeof __icons_circle_small>;
|
|
'circle-stop': () => Promise<typeof __icons_circle_stop>;
|
|
'stop-circle': () => Promise<typeof __icons_circle_stop>;
|
|
'circle-user-round': () => Promise<typeof __icons_circle_user_round>;
|
|
'user-circle-2': () => Promise<typeof __icons_circle_user_round>;
|
|
'circle-user': () => Promise<typeof __icons_circle_user>;
|
|
'user-circle': () => Promise<typeof __icons_circle_user>;
|
|
'circle-x': () => Promise<typeof __icons_circle_x>;
|
|
'x-circle': () => Promise<typeof __icons_circle_x>;
|
|
circle: () => Promise<typeof __icons_circle>;
|
|
'circuit-board': () => Promise<typeof __icons_circuit_board>;
|
|
citrus: () => Promise<typeof __icons_citrus>;
|
|
clapperboard: () => Promise<typeof __icons_clapperboard>;
|
|
'clipboard-check': () => Promise<typeof __icons_clipboard_check>;
|
|
'clipboard-copy': () => Promise<typeof __icons_clipboard_copy>;
|
|
'clipboard-list': () => Promise<typeof __icons_clipboard_list>;
|
|
'clipboard-minus': () => Promise<typeof __icons_clipboard_minus>;
|
|
'clipboard-paste': () => Promise<typeof __icons_clipboard_paste>;
|
|
'clipboard-pen-line': () => Promise<typeof __icons_clipboard_pen_line>;
|
|
'clipboard-signature': () => Promise<typeof __icons_clipboard_pen_line>;
|
|
'clipboard-pen': () => Promise<typeof __icons_clipboard_pen>;
|
|
'clipboard-edit': () => Promise<typeof __icons_clipboard_pen>;
|
|
'clipboard-plus': () => Promise<typeof __icons_clipboard_plus>;
|
|
'clipboard-type': () => Promise<typeof __icons_clipboard_type>;
|
|
'clipboard-x': () => Promise<typeof __icons_clipboard_x>;
|
|
clipboard: () => Promise<typeof __icons_clipboard>;
|
|
'clock-1': () => Promise<typeof __icons_clock_1>;
|
|
'clock-10': () => Promise<typeof __icons_clock_10>;
|
|
'clock-11': () => Promise<typeof __icons_clock_11>;
|
|
'clock-12': () => Promise<typeof __icons_clock_12>;
|
|
'clock-2': () => Promise<typeof __icons_clock_2>;
|
|
'clock-3': () => Promise<typeof __icons_clock_3>;
|
|
'clock-4': () => Promise<typeof __icons_clock_4>;
|
|
'clock-5': () => Promise<typeof __icons_clock_5>;
|
|
'clock-6': () => Promise<typeof __icons_clock_6>;
|
|
'clock-7': () => Promise<typeof __icons_clock_7>;
|
|
'clock-8': () => Promise<typeof __icons_clock_8>;
|
|
'clock-9': () => Promise<typeof __icons_clock_9>;
|
|
'clock-alert': () => Promise<typeof __icons_clock_alert>;
|
|
'clock-arrow-down': () => Promise<typeof __icons_clock_arrow_down>;
|
|
'clock-arrow-up': () => Promise<typeof __icons_clock_arrow_up>;
|
|
'clock-fading': () => Promise<typeof __icons_clock_fading>;
|
|
clock: () => Promise<typeof __icons_clock>;
|
|
'cloud-alert': () => Promise<typeof __icons_cloud_alert>;
|
|
'cloud-cog': () => Promise<typeof __icons_cloud_cog>;
|
|
'cloud-download': () => Promise<typeof __icons_cloud_download>;
|
|
'download-cloud': () => Promise<typeof __icons_cloud_download>;
|
|
'cloud-drizzle': () => Promise<typeof __icons_cloud_drizzle>;
|
|
'cloud-fog': () => Promise<typeof __icons_cloud_fog>;
|
|
'cloud-hail': () => Promise<typeof __icons_cloud_hail>;
|
|
'cloud-lightning': () => Promise<typeof __icons_cloud_lightning>;
|
|
'cloud-moon-rain': () => Promise<typeof __icons_cloud_moon_rain>;
|
|
'cloud-moon': () => Promise<typeof __icons_cloud_moon>;
|
|
'cloud-off': () => Promise<typeof __icons_cloud_off>;
|
|
'cloud-rain-wind': () => Promise<typeof __icons_cloud_rain_wind>;
|
|
'cloud-rain': () => Promise<typeof __icons_cloud_rain>;
|
|
'cloud-snow': () => Promise<typeof __icons_cloud_snow>;
|
|
'cloud-sun-rain': () => Promise<typeof __icons_cloud_sun_rain>;
|
|
'cloud-sun': () => Promise<typeof __icons_cloud_sun>;
|
|
'cloud-upload': () => Promise<typeof __icons_cloud_upload>;
|
|
'upload-cloud': () => Promise<typeof __icons_cloud_upload>;
|
|
cloud: () => Promise<typeof __icons_cloud>;
|
|
cloudy: () => Promise<typeof __icons_cloudy>;
|
|
clover: () => Promise<typeof __icons_clover>;
|
|
club: () => Promise<typeof __icons_club>;
|
|
'code-xml': () => Promise<typeof __icons_code_xml>;
|
|
'code-2': () => Promise<typeof __icons_code_xml>;
|
|
code: () => Promise<typeof __icons_code>;
|
|
codepen: () => Promise<typeof __icons_codepen>;
|
|
codesandbox: () => Promise<typeof __icons_codesandbox>;
|
|
coffee: () => Promise<typeof __icons_coffee>;
|
|
cog: () => Promise<typeof __icons_cog>;
|
|
coins: () => Promise<typeof __icons_coins>;
|
|
'columns-2': () => Promise<typeof __icons_columns_2>;
|
|
columns: () => Promise<typeof __icons_columns_2>;
|
|
'columns-3': () => Promise<typeof __icons_columns_3>;
|
|
'panels-left-right': () => Promise<typeof __icons_columns_3>;
|
|
'columns-4': () => Promise<typeof __icons_columns_4>;
|
|
combine: () => Promise<typeof __icons_combine>;
|
|
command: () => Promise<typeof __icons_command>;
|
|
compass: () => Promise<typeof __icons_compass>;
|
|
component: () => Promise<typeof __icons_component>;
|
|
computer: () => Promise<typeof __icons_computer>;
|
|
'concierge-bell': () => Promise<typeof __icons_concierge_bell>;
|
|
cone: () => Promise<typeof __icons_cone>;
|
|
construction: () => Promise<typeof __icons_construction>;
|
|
'contact-round': () => Promise<typeof __icons_contact_round>;
|
|
'contact-2': () => Promise<typeof __icons_contact_round>;
|
|
contact: () => Promise<typeof __icons_contact>;
|
|
container: () => Promise<typeof __icons_container>;
|
|
contrast: () => Promise<typeof __icons_contrast>;
|
|
cookie: () => Promise<typeof __icons_cookie>;
|
|
'cooking-pot': () => Promise<typeof __icons_cooking_pot>;
|
|
'copy-check': () => Promise<typeof __icons_copy_check>;
|
|
'copy-minus': () => Promise<typeof __icons_copy_minus>;
|
|
'copy-plus': () => Promise<typeof __icons_copy_plus>;
|
|
'copy-slash': () => Promise<typeof __icons_copy_slash>;
|
|
'copy-x': () => Promise<typeof __icons_copy_x>;
|
|
copy: () => Promise<typeof __icons_copy>;
|
|
copyleft: () => Promise<typeof __icons_copyleft>;
|
|
copyright: () => Promise<typeof __icons_copyright>;
|
|
'corner-down-left': () => Promise<typeof __icons_corner_down_left>;
|
|
'corner-down-right': () => Promise<typeof __icons_corner_down_right>;
|
|
'corner-left-down': () => Promise<typeof __icons_corner_left_down>;
|
|
'corner-left-up': () => Promise<typeof __icons_corner_left_up>;
|
|
'corner-right-down': () => Promise<typeof __icons_corner_right_down>;
|
|
'corner-right-up': () => Promise<typeof __icons_corner_right_up>;
|
|
'corner-up-left': () => Promise<typeof __icons_corner_up_left>;
|
|
'corner-up-right': () => Promise<typeof __icons_corner_up_right>;
|
|
cpu: () => Promise<typeof __icons_cpu>;
|
|
'creative-commons': () => Promise<typeof __icons_creative_commons>;
|
|
'credit-card': () => Promise<typeof __icons_credit_card>;
|
|
croissant: () => Promise<typeof __icons_croissant>;
|
|
crop: () => Promise<typeof __icons_crop>;
|
|
cross: () => Promise<typeof __icons_cross>;
|
|
crosshair: () => Promise<typeof __icons_crosshair>;
|
|
crown: () => Promise<typeof __icons_crown>;
|
|
cuboid: () => Promise<typeof __icons_cuboid>;
|
|
'cup-soda': () => Promise<typeof __icons_cup_soda>;
|
|
currency: () => Promise<typeof __icons_currency>;
|
|
cylinder: () => Promise<typeof __icons_cylinder>;
|
|
dam: () => Promise<typeof __icons_dam>;
|
|
'database-backup': () => Promise<typeof __icons_database_backup>;
|
|
'database-zap': () => Promise<typeof __icons_database_zap>;
|
|
database: () => Promise<typeof __icons_database>;
|
|
delete: () => Promise<typeof __icons_delete>;
|
|
dessert: () => Promise<typeof __icons_dessert>;
|
|
diameter: () => Promise<typeof __icons_diameter>;
|
|
'diamond-minus': () => Promise<typeof __icons_diamond_minus>;
|
|
'diamond-percent': () => Promise<typeof __icons_diamond_percent>;
|
|
'percent-diamond': () => Promise<typeof __icons_diamond_percent>;
|
|
'diamond-plus': () => Promise<typeof __icons_diamond_plus>;
|
|
diamond: () => Promise<typeof __icons_diamond>;
|
|
'dice-1': () => Promise<typeof __icons_dice_1>;
|
|
'dice-2': () => Promise<typeof __icons_dice_2>;
|
|
'dice-3': () => Promise<typeof __icons_dice_3>;
|
|
'dice-4': () => Promise<typeof __icons_dice_4>;
|
|
'dice-5': () => Promise<typeof __icons_dice_5>;
|
|
'dice-6': () => Promise<typeof __icons_dice_6>;
|
|
dices: () => Promise<typeof __icons_dices>;
|
|
diff: () => Promise<typeof __icons_diff>;
|
|
'disc-2': () => Promise<typeof __icons_disc_2>;
|
|
'disc-3': () => Promise<typeof __icons_disc_3>;
|
|
'disc-album': () => Promise<typeof __icons_disc_album>;
|
|
disc: () => Promise<typeof __icons_disc>;
|
|
divide: () => Promise<typeof __icons_divide>;
|
|
'dna-off': () => Promise<typeof __icons_dna_off>;
|
|
dna: () => Promise<typeof __icons_dna>;
|
|
dock: () => Promise<typeof __icons_dock>;
|
|
dog: () => Promise<typeof __icons_dog>;
|
|
'dollar-sign': () => Promise<typeof __icons_dollar_sign>;
|
|
donut: () => Promise<typeof __icons_donut>;
|
|
'door-closed': () => Promise<typeof __icons_door_closed>;
|
|
'door-open': () => Promise<typeof __icons_door_open>;
|
|
dot: () => Promise<typeof __icons_dot>;
|
|
download: () => Promise<typeof __icons_download>;
|
|
'drafting-compass': () => Promise<typeof __icons_drafting_compass>;
|
|
drama: () => Promise<typeof __icons_drama>;
|
|
dribbble: () => Promise<typeof __icons_dribbble>;
|
|
drill: () => Promise<typeof __icons_drill>;
|
|
'droplet-off': () => Promise<typeof __icons_droplet_off>;
|
|
droplet: () => Promise<typeof __icons_droplet>;
|
|
droplets: () => Promise<typeof __icons_droplets>;
|
|
drum: () => Promise<typeof __icons_drum>;
|
|
drumstick: () => Promise<typeof __icons_drumstick>;
|
|
dumbbell: () => Promise<typeof __icons_dumbbell>;
|
|
'ear-off': () => Promise<typeof __icons_ear_off>;
|
|
ear: () => Promise<typeof __icons_ear>;
|
|
'earth-lock': () => Promise<typeof __icons_earth_lock>;
|
|
earth: () => Promise<typeof __icons_earth>;
|
|
'globe-2': () => Promise<typeof __icons_earth>;
|
|
eclipse: () => Promise<typeof __icons_eclipse>;
|
|
'egg-fried': () => Promise<typeof __icons_egg_fried>;
|
|
'egg-off': () => Promise<typeof __icons_egg_off>;
|
|
egg: () => Promise<typeof __icons_egg>;
|
|
'ellipsis-vertical': () => Promise<typeof __icons_ellipsis_vertical>;
|
|
'more-vertical': () => Promise<typeof __icons_ellipsis_vertical>;
|
|
ellipsis: () => Promise<typeof __icons_ellipsis>;
|
|
'more-horizontal': () => Promise<typeof __icons_ellipsis>;
|
|
'equal-approximately': () => Promise<typeof __icons_equal_approximately>;
|
|
'equal-not': () => Promise<typeof __icons_equal_not>;
|
|
equal: () => Promise<typeof __icons_equal>;
|
|
eraser: () => Promise<typeof __icons_eraser>;
|
|
'ethernet-port': () => Promise<typeof __icons_ethernet_port>;
|
|
euro: () => Promise<typeof __icons_euro>;
|
|
expand: () => Promise<typeof __icons_expand>;
|
|
'external-link': () => Promise<typeof __icons_external_link>;
|
|
'eye-closed': () => Promise<typeof __icons_eye_closed>;
|
|
'eye-off': () => Promise<typeof __icons_eye_off>;
|
|
eye: () => Promise<typeof __icons_eye>;
|
|
facebook: () => Promise<typeof __icons_facebook>;
|
|
factory: () => Promise<typeof __icons_factory>;
|
|
fan: () => Promise<typeof __icons_fan>;
|
|
'fast-forward': () => Promise<typeof __icons_fast_forward>;
|
|
feather: () => Promise<typeof __icons_feather>;
|
|
fence: () => Promise<typeof __icons_fence>;
|
|
'ferris-wheel': () => Promise<typeof __icons_ferris_wheel>;
|
|
figma: () => Promise<typeof __icons_figma>;
|
|
'file-archive': () => Promise<typeof __icons_file_archive>;
|
|
'file-audio-2': () => Promise<typeof __icons_file_audio_2>;
|
|
'file-audio': () => Promise<typeof __icons_file_audio>;
|
|
'file-axis-3d': () => Promise<typeof __icons_file_axis_3d>;
|
|
'file-axis-3-d': () => Promise<typeof __icons_file_axis_3d>;
|
|
'file-badge-2': () => Promise<typeof __icons_file_badge_2>;
|
|
'file-badge': () => Promise<typeof __icons_file_badge>;
|
|
'file-box': () => Promise<typeof __icons_file_box>;
|
|
'file-chart-column-increasing': () => Promise<typeof __icons_file_chart_column_increasing>;
|
|
'file-bar-chart': () => Promise<typeof __icons_file_chart_column_increasing>;
|
|
'file-chart-column': () => Promise<typeof __icons_file_chart_column>;
|
|
'file-bar-chart-2': () => Promise<typeof __icons_file_chart_column>;
|
|
'file-chart-line': () => Promise<typeof __icons_file_chart_line>;
|
|
'file-line-chart': () => Promise<typeof __icons_file_chart_line>;
|
|
'file-chart-pie': () => Promise<typeof __icons_file_chart_pie>;
|
|
'file-pie-chart': () => Promise<typeof __icons_file_chart_pie>;
|
|
'file-check-2': () => Promise<typeof __icons_file_check_2>;
|
|
'file-check': () => Promise<typeof __icons_file_check>;
|
|
'file-clock': () => Promise<typeof __icons_file_clock>;
|
|
'file-code-2': () => Promise<typeof __icons_file_code_2>;
|
|
'file-code': () => Promise<typeof __icons_file_code>;
|
|
'file-cog': () => Promise<typeof __icons_file_cog>;
|
|
'file-cog-2': () => Promise<typeof __icons_file_cog>;
|
|
'file-diff': () => Promise<typeof __icons_file_diff>;
|
|
'file-digit': () => Promise<typeof __icons_file_digit>;
|
|
'file-down': () => Promise<typeof __icons_file_down>;
|
|
'file-heart': () => Promise<typeof __icons_file_heart>;
|
|
'file-image': () => Promise<typeof __icons_file_image>;
|
|
'file-input': () => Promise<typeof __icons_file_input>;
|
|
'file-json-2': () => Promise<typeof __icons_file_json_2>;
|
|
'file-json': () => Promise<typeof __icons_file_json>;
|
|
'file-key-2': () => Promise<typeof __icons_file_key_2>;
|
|
'file-key': () => Promise<typeof __icons_file_key>;
|
|
'file-lock-2': () => Promise<typeof __icons_file_lock_2>;
|
|
'file-lock': () => Promise<typeof __icons_file_lock>;
|
|
'file-minus-2': () => Promise<typeof __icons_file_minus_2>;
|
|
'file-minus': () => Promise<typeof __icons_file_minus>;
|
|
'file-music': () => Promise<typeof __icons_file_music>;
|
|
'file-output': () => Promise<typeof __icons_file_output>;
|
|
'file-pen-line': () => Promise<typeof __icons_file_pen_line>;
|
|
'file-signature': () => Promise<typeof __icons_file_pen_line>;
|
|
'file-pen': () => Promise<typeof __icons_file_pen>;
|
|
'file-edit': () => Promise<typeof __icons_file_pen>;
|
|
'file-plus-2': () => Promise<typeof __icons_file_plus_2>;
|
|
'file-plus': () => Promise<typeof __icons_file_plus>;
|
|
'file-question': () => Promise<typeof __icons_file_question>;
|
|
'file-scan': () => Promise<typeof __icons_file_scan>;
|
|
'file-search-2': () => Promise<typeof __icons_file_search_2>;
|
|
'file-search': () => Promise<typeof __icons_file_search>;
|
|
'file-sliders': () => Promise<typeof __icons_file_sliders>;
|
|
'file-spreadsheet': () => Promise<typeof __icons_file_spreadsheet>;
|
|
'file-stack': () => Promise<typeof __icons_file_stack>;
|
|
'file-symlink': () => Promise<typeof __icons_file_symlink>;
|
|
'file-terminal': () => Promise<typeof __icons_file_terminal>;
|
|
'file-text': () => Promise<typeof __icons_file_text>;
|
|
'file-type-2': () => Promise<typeof __icons_file_type_2>;
|
|
'file-type': () => Promise<typeof __icons_file_type>;
|
|
'file-up': () => Promise<typeof __icons_file_up>;
|
|
'file-user': () => Promise<typeof __icons_file_user>;
|
|
'file-video-2': () => Promise<typeof __icons_file_video_2>;
|
|
'file-video': () => Promise<typeof __icons_file_video>;
|
|
'file-volume-2': () => Promise<typeof __icons_file_volume_2>;
|
|
'file-volume': () => Promise<typeof __icons_file_volume>;
|
|
'file-warning': () => Promise<typeof __icons_file_warning>;
|
|
'file-x-2': () => Promise<typeof __icons_file_x_2>;
|
|
'file-x': () => Promise<typeof __icons_file_x>;
|
|
file: () => Promise<typeof __icons_file>;
|
|
files: () => Promise<typeof __icons_files>;
|
|
film: () => Promise<typeof __icons_film>;
|
|
fingerprint: () => Promise<typeof __icons_fingerprint>;
|
|
'fire-extinguisher': () => Promise<typeof __icons_fire_extinguisher>;
|
|
'fish-off': () => Promise<typeof __icons_fish_off>;
|
|
'fish-symbol': () => Promise<typeof __icons_fish_symbol>;
|
|
fish: () => Promise<typeof __icons_fish>;
|
|
'flag-off': () => Promise<typeof __icons_flag_off>;
|
|
'flag-triangle-left': () => Promise<typeof __icons_flag_triangle_left>;
|
|
'flag-triangle-right': () => Promise<typeof __icons_flag_triangle_right>;
|
|
flag: () => Promise<typeof __icons_flag>;
|
|
'flame-kindling': () => Promise<typeof __icons_flame_kindling>;
|
|
flame: () => Promise<typeof __icons_flame>;
|
|
'flashlight-off': () => Promise<typeof __icons_flashlight_off>;
|
|
flashlight: () => Promise<typeof __icons_flashlight>;
|
|
'flask-conical-off': () => Promise<typeof __icons_flask_conical_off>;
|
|
'flask-conical': () => Promise<typeof __icons_flask_conical>;
|
|
'flask-round': () => Promise<typeof __icons_flask_round>;
|
|
'flip-horizontal-2': () => Promise<typeof __icons_flip_horizontal_2>;
|
|
'flip-horizontal': () => Promise<typeof __icons_flip_horizontal>;
|
|
'flip-vertical-2': () => Promise<typeof __icons_flip_vertical_2>;
|
|
'flip-vertical': () => Promise<typeof __icons_flip_vertical>;
|
|
'flower-2': () => Promise<typeof __icons_flower_2>;
|
|
flower: () => Promise<typeof __icons_flower>;
|
|
focus: () => Promise<typeof __icons_focus>;
|
|
'fold-horizontal': () => Promise<typeof __icons_fold_horizontal>;
|
|
'fold-vertical': () => Promise<typeof __icons_fold_vertical>;
|
|
'folder-archive': () => Promise<typeof __icons_folder_archive>;
|
|
'folder-check': () => Promise<typeof __icons_folder_check>;
|
|
'folder-clock': () => Promise<typeof __icons_folder_clock>;
|
|
'folder-closed': () => Promise<typeof __icons_folder_closed>;
|
|
'folder-code': () => Promise<typeof __icons_folder_code>;
|
|
'folder-cog': () => Promise<typeof __icons_folder_cog>;
|
|
'folder-cog-2': () => Promise<typeof __icons_folder_cog>;
|
|
'folder-dot': () => Promise<typeof __icons_folder_dot>;
|
|
'folder-down': () => Promise<typeof __icons_folder_down>;
|
|
'folder-git-2': () => Promise<typeof __icons_folder_git_2>;
|
|
'folder-git': () => Promise<typeof __icons_folder_git>;
|
|
'folder-heart': () => Promise<typeof __icons_folder_heart>;
|
|
'folder-input': () => Promise<typeof __icons_folder_input>;
|
|
'folder-kanban': () => Promise<typeof __icons_folder_kanban>;
|
|
'folder-key': () => Promise<typeof __icons_folder_key>;
|
|
'folder-lock': () => Promise<typeof __icons_folder_lock>;
|
|
'folder-minus': () => Promise<typeof __icons_folder_minus>;
|
|
'folder-open-dot': () => Promise<typeof __icons_folder_open_dot>;
|
|
'folder-open': () => Promise<typeof __icons_folder_open>;
|
|
'folder-output': () => Promise<typeof __icons_folder_output>;
|
|
'folder-pen': () => Promise<typeof __icons_folder_pen>;
|
|
'folder-edit': () => Promise<typeof __icons_folder_pen>;
|
|
'folder-plus': () => Promise<typeof __icons_folder_plus>;
|
|
'folder-root': () => Promise<typeof __icons_folder_root>;
|
|
'folder-search-2': () => Promise<typeof __icons_folder_search_2>;
|
|
'folder-search': () => Promise<typeof __icons_folder_search>;
|
|
'folder-symlink': () => Promise<typeof __icons_folder_symlink>;
|
|
'folder-sync': () => Promise<typeof __icons_folder_sync>;
|
|
'folder-tree': () => Promise<typeof __icons_folder_tree>;
|
|
'folder-up': () => Promise<typeof __icons_folder_up>;
|
|
'folder-x': () => Promise<typeof __icons_folder_x>;
|
|
folder: () => Promise<typeof __icons_folder>;
|
|
folders: () => Promise<typeof __icons_folders>;
|
|
footprints: () => Promise<typeof __icons_footprints>;
|
|
forklift: () => Promise<typeof __icons_forklift>;
|
|
forward: () => Promise<typeof __icons_forward>;
|
|
frame: () => Promise<typeof __icons_frame>;
|
|
framer: () => Promise<typeof __icons_framer>;
|
|
frown: () => Promise<typeof __icons_frown>;
|
|
fuel: () => Promise<typeof __icons_fuel>;
|
|
fullscreen: () => Promise<typeof __icons_fullscreen>;
|
|
'funnel-plus': () => Promise<typeof __icons_funnel_plus>;
|
|
'funnel-x': () => Promise<typeof __icons_funnel_x>;
|
|
'filter-x': () => Promise<typeof __icons_funnel_x>;
|
|
funnel: () => Promise<typeof __icons_funnel>;
|
|
filter: () => Promise<typeof __icons_funnel>;
|
|
'gallery-horizontal-end': () => Promise<typeof __icons_gallery_horizontal_end>;
|
|
'gallery-horizontal': () => Promise<typeof __icons_gallery_horizontal>;
|
|
'gallery-thumbnails': () => Promise<typeof __icons_gallery_thumbnails>;
|
|
'gallery-vertical-end': () => Promise<typeof __icons_gallery_vertical_end>;
|
|
'gallery-vertical': () => Promise<typeof __icons_gallery_vertical>;
|
|
'gamepad-2': () => Promise<typeof __icons_gamepad_2>;
|
|
gamepad: () => Promise<typeof __icons_gamepad>;
|
|
gauge: () => Promise<typeof __icons_gauge>;
|
|
gavel: () => Promise<typeof __icons_gavel>;
|
|
gem: () => Promise<typeof __icons_gem>;
|
|
ghost: () => Promise<typeof __icons_ghost>;
|
|
gift: () => Promise<typeof __icons_gift>;
|
|
'git-branch-plus': () => Promise<typeof __icons_git_branch_plus>;
|
|
'git-branch': () => Promise<typeof __icons_git_branch>;
|
|
'git-commit-horizontal': () => Promise<typeof __icons_git_commit_horizontal>;
|
|
'git-commit': () => Promise<typeof __icons_git_commit_horizontal>;
|
|
'git-commit-vertical': () => Promise<typeof __icons_git_commit_vertical>;
|
|
'git-compare-arrows': () => Promise<typeof __icons_git_compare_arrows>;
|
|
'git-compare': () => Promise<typeof __icons_git_compare>;
|
|
'git-fork': () => Promise<typeof __icons_git_fork>;
|
|
'git-graph': () => Promise<typeof __icons_git_graph>;
|
|
'git-merge': () => Promise<typeof __icons_git_merge>;
|
|
'git-pull-request-arrow': () => Promise<typeof __icons_git_pull_request_arrow>;
|
|
'git-pull-request-closed': () => Promise<typeof __icons_git_pull_request_closed>;
|
|
'git-pull-request-create-arrow': () => Promise<typeof __icons_git_pull_request_create_arrow>;
|
|
'git-pull-request-create': () => Promise<typeof __icons_git_pull_request_create>;
|
|
'git-pull-request-draft': () => Promise<typeof __icons_git_pull_request_draft>;
|
|
'git-pull-request': () => Promise<typeof __icons_git_pull_request>;
|
|
github: () => Promise<typeof __icons_github>;
|
|
gitlab: () => Promise<typeof __icons_gitlab>;
|
|
'glass-water': () => Promise<typeof __icons_glass_water>;
|
|
glasses: () => Promise<typeof __icons_glasses>;
|
|
'globe-lock': () => Promise<typeof __icons_globe_lock>;
|
|
globe: () => Promise<typeof __icons_globe>;
|
|
goal: () => Promise<typeof __icons_goal>;
|
|
grab: () => Promise<typeof __icons_grab>;
|
|
'graduation-cap': () => Promise<typeof __icons_graduation_cap>;
|
|
grape: () => Promise<typeof __icons_grape>;
|
|
'grid-2x2-check': () => Promise<typeof __icons_grid_2x2_check>;
|
|
'grid-2-x-2-check': () => Promise<typeof __icons_grid_2x2_check>;
|
|
'grid-2x2-plus': () => Promise<typeof __icons_grid_2x2_plus>;
|
|
'grid-2-x-2-plus': () => Promise<typeof __icons_grid_2x2_plus>;
|
|
'grid-2x2-x': () => Promise<typeof __icons_grid_2x2_x>;
|
|
'grid-2-x-2-x': () => Promise<typeof __icons_grid_2x2_x>;
|
|
'grid-2x2': () => Promise<typeof __icons_grid_2x2>;
|
|
'grid-2-x-2': () => Promise<typeof __icons_grid_2x2>;
|
|
'grid-3x3': () => Promise<typeof __icons_grid_3x3>;
|
|
grid: () => Promise<typeof __icons_grid_3x3>;
|
|
'grid-3-x-3': () => Promise<typeof __icons_grid_3x3>;
|
|
'grip-horizontal': () => Promise<typeof __icons_grip_horizontal>;
|
|
'grip-vertical': () => Promise<typeof __icons_grip_vertical>;
|
|
grip: () => Promise<typeof __icons_grip>;
|
|
group: () => Promise<typeof __icons_group>;
|
|
guitar: () => Promise<typeof __icons_guitar>;
|
|
ham: () => Promise<typeof __icons_ham>;
|
|
hammer: () => Promise<typeof __icons_hammer>;
|
|
'hand-coins': () => Promise<typeof __icons_hand_coins>;
|
|
'hand-heart': () => Promise<typeof __icons_hand_heart>;
|
|
'hand-helping': () => Promise<typeof __icons_hand_helping>;
|
|
'helping-hand': () => Promise<typeof __icons_hand_helping>;
|
|
'hand-metal': () => Promise<typeof __icons_hand_metal>;
|
|
'hand-platter': () => Promise<typeof __icons_hand_platter>;
|
|
hand: () => Promise<typeof __icons_hand>;
|
|
handshake: () => Promise<typeof __icons_handshake>;
|
|
'hard-drive-download': () => Promise<typeof __icons_hard_drive_download>;
|
|
'hard-drive-upload': () => Promise<typeof __icons_hard_drive_upload>;
|
|
'hard-drive': () => Promise<typeof __icons_hard_drive>;
|
|
'hard-hat': () => Promise<typeof __icons_hard_hat>;
|
|
hash: () => Promise<typeof __icons_hash>;
|
|
haze: () => Promise<typeof __icons_haze>;
|
|
'hdmi-port': () => Promise<typeof __icons_hdmi_port>;
|
|
'heading-1': () => Promise<typeof __icons_heading_1>;
|
|
'heading-2': () => Promise<typeof __icons_heading_2>;
|
|
'heading-3': () => Promise<typeof __icons_heading_3>;
|
|
'heading-4': () => Promise<typeof __icons_heading_4>;
|
|
'heading-5': () => Promise<typeof __icons_heading_5>;
|
|
'heading-6': () => Promise<typeof __icons_heading_6>;
|
|
heading: () => Promise<typeof __icons_heading>;
|
|
'headphone-off': () => Promise<typeof __icons_headphone_off>;
|
|
headphones: () => Promise<typeof __icons_headphones>;
|
|
headset: () => Promise<typeof __icons_headset>;
|
|
'heart-crack': () => Promise<typeof __icons_heart_crack>;
|
|
'heart-handshake': () => Promise<typeof __icons_heart_handshake>;
|
|
'heart-off': () => Promise<typeof __icons_heart_off>;
|
|
'heart-pulse': () => Promise<typeof __icons_heart_pulse>;
|
|
heart: () => Promise<typeof __icons_heart>;
|
|
heater: () => Promise<typeof __icons_heater>;
|
|
hexagon: () => Promise<typeof __icons_hexagon>;
|
|
highlighter: () => Promise<typeof __icons_highlighter>;
|
|
history: () => Promise<typeof __icons_history>;
|
|
'hop-off': () => Promise<typeof __icons_hop_off>;
|
|
hop: () => Promise<typeof __icons_hop>;
|
|
hospital: () => Promise<typeof __icons_hospital>;
|
|
hotel: () => Promise<typeof __icons_hotel>;
|
|
hourglass: () => Promise<typeof __icons_hourglass>;
|
|
'house-plug': () => Promise<typeof __icons_house_plug>;
|
|
'house-plus': () => Promise<typeof __icons_house_plus>;
|
|
'house-wifi': () => Promise<typeof __icons_house_wifi>;
|
|
house: () => Promise<typeof __icons_house>;
|
|
home: () => Promise<typeof __icons_house>;
|
|
'ice-cream-bowl': () => Promise<typeof __icons_ice_cream_bowl>;
|
|
'ice-cream-2': () => Promise<typeof __icons_ice_cream_bowl>;
|
|
'ice-cream-cone': () => Promise<typeof __icons_ice_cream_cone>;
|
|
'ice-cream': () => Promise<typeof __icons_ice_cream_cone>;
|
|
'id-card': () => Promise<typeof __icons_id_card>;
|
|
'image-down': () => Promise<typeof __icons_image_down>;
|
|
'image-minus': () => Promise<typeof __icons_image_minus>;
|
|
'image-off': () => Promise<typeof __icons_image_off>;
|
|
'image-play': () => Promise<typeof __icons_image_play>;
|
|
'image-plus': () => Promise<typeof __icons_image_plus>;
|
|
'image-up': () => Promise<typeof __icons_image_up>;
|
|
'image-upscale': () => Promise<typeof __icons_image_upscale>;
|
|
image: () => Promise<typeof __icons_image>;
|
|
images: () => Promise<typeof __icons_images>;
|
|
import: () => Promise<typeof __icons_import>;
|
|
inbox: () => Promise<typeof __icons_inbox>;
|
|
'indent-decrease': () => Promise<typeof __icons_indent_decrease>;
|
|
outdent: () => Promise<typeof __icons_indent_decrease>;
|
|
'indent-increase': () => Promise<typeof __icons_indent_increase>;
|
|
indent: () => Promise<typeof __icons_indent_increase>;
|
|
'indian-rupee': () => Promise<typeof __icons_indian_rupee>;
|
|
infinity: () => Promise<typeof __icons_infinity>;
|
|
info: () => Promise<typeof __icons_info>;
|
|
'inspection-panel': () => Promise<typeof __icons_inspection_panel>;
|
|
instagram: () => Promise<typeof __icons_instagram>;
|
|
italic: () => Promise<typeof __icons_italic>;
|
|
'iteration-ccw': () => Promise<typeof __icons_iteration_ccw>;
|
|
'iteration-cw': () => Promise<typeof __icons_iteration_cw>;
|
|
'japanese-yen': () => Promise<typeof __icons_japanese_yen>;
|
|
joystick: () => Promise<typeof __icons_joystick>;
|
|
kanban: () => Promise<typeof __icons_kanban>;
|
|
'key-round': () => Promise<typeof __icons_key_round>;
|
|
'key-square': () => Promise<typeof __icons_key_square>;
|
|
key: () => Promise<typeof __icons_key>;
|
|
'keyboard-music': () => Promise<typeof __icons_keyboard_music>;
|
|
'keyboard-off': () => Promise<typeof __icons_keyboard_off>;
|
|
keyboard: () => Promise<typeof __icons_keyboard>;
|
|
'lamp-ceiling': () => Promise<typeof __icons_lamp_ceiling>;
|
|
'lamp-desk': () => Promise<typeof __icons_lamp_desk>;
|
|
'lamp-floor': () => Promise<typeof __icons_lamp_floor>;
|
|
'lamp-wall-down': () => Promise<typeof __icons_lamp_wall_down>;
|
|
'lamp-wall-up': () => Promise<typeof __icons_lamp_wall_up>;
|
|
lamp: () => Promise<typeof __icons_lamp>;
|
|
'land-plot': () => Promise<typeof __icons_land_plot>;
|
|
landmark: () => Promise<typeof __icons_landmark>;
|
|
languages: () => Promise<typeof __icons_languages>;
|
|
'laptop-minimal-check': () => Promise<typeof __icons_laptop_minimal_check>;
|
|
'laptop-minimal': () => Promise<typeof __icons_laptop_minimal>;
|
|
'laptop-2': () => Promise<typeof __icons_laptop_minimal>;
|
|
laptop: () => Promise<typeof __icons_laptop>;
|
|
'lasso-select': () => Promise<typeof __icons_lasso_select>;
|
|
lasso: () => Promise<typeof __icons_lasso>;
|
|
laugh: () => Promise<typeof __icons_laugh>;
|
|
'layers-2': () => Promise<typeof __icons_layers_2>;
|
|
layers: () => Promise<typeof __icons_layers>;
|
|
'layers-3': () => Promise<typeof __icons_layers>;
|
|
'layout-dashboard': () => Promise<typeof __icons_layout_dashboard>;
|
|
'layout-grid': () => Promise<typeof __icons_layout_grid>;
|
|
'layout-list': () => Promise<typeof __icons_layout_list>;
|
|
'layout-panel-left': () => Promise<typeof __icons_layout_panel_left>;
|
|
'layout-panel-top': () => Promise<typeof __icons_layout_panel_top>;
|
|
'layout-template': () => Promise<typeof __icons_layout_template>;
|
|
leaf: () => Promise<typeof __icons_leaf>;
|
|
'leafy-green': () => Promise<typeof __icons_leafy_green>;
|
|
lectern: () => Promise<typeof __icons_lectern>;
|
|
'letter-text': () => Promise<typeof __icons_letter_text>;
|
|
'library-big': () => Promise<typeof __icons_library_big>;
|
|
library: () => Promise<typeof __icons_library>;
|
|
'life-buoy': () => Promise<typeof __icons_life_buoy>;
|
|
ligature: () => Promise<typeof __icons_ligature>;
|
|
'lightbulb-off': () => Promise<typeof __icons_lightbulb_off>;
|
|
lightbulb: () => Promise<typeof __icons_lightbulb>;
|
|
'link-2-off': () => Promise<typeof __icons_link_2_off>;
|
|
'link-2': () => Promise<typeof __icons_link_2>;
|
|
link: () => Promise<typeof __icons_link>;
|
|
linkedin: () => Promise<typeof __icons_linkedin>;
|
|
'list-check': () => Promise<typeof __icons_list_check>;
|
|
'list-checks': () => Promise<typeof __icons_list_checks>;
|
|
'list-collapse': () => Promise<typeof __icons_list_collapse>;
|
|
'list-end': () => Promise<typeof __icons_list_end>;
|
|
'list-filter-plus': () => Promise<typeof __icons_list_filter_plus>;
|
|
'list-filter': () => Promise<typeof __icons_list_filter>;
|
|
'list-minus': () => Promise<typeof __icons_list_minus>;
|
|
'list-music': () => Promise<typeof __icons_list_music>;
|
|
'list-ordered': () => Promise<typeof __icons_list_ordered>;
|
|
'list-plus': () => Promise<typeof __icons_list_plus>;
|
|
'list-restart': () => Promise<typeof __icons_list_restart>;
|
|
'list-start': () => Promise<typeof __icons_list_start>;
|
|
'list-todo': () => Promise<typeof __icons_list_todo>;
|
|
'list-tree': () => Promise<typeof __icons_list_tree>;
|
|
'list-video': () => Promise<typeof __icons_list_video>;
|
|
'list-x': () => Promise<typeof __icons_list_x>;
|
|
list: () => Promise<typeof __icons_list>;
|
|
'loader-circle': () => Promise<typeof __icons_loader_circle>;
|
|
'loader-2': () => Promise<typeof __icons_loader_circle>;
|
|
'loader-pinwheel': () => Promise<typeof __icons_loader_pinwheel>;
|
|
loader: () => Promise<typeof __icons_loader>;
|
|
'locate-fixed': () => Promise<typeof __icons_locate_fixed>;
|
|
'locate-off': () => Promise<typeof __icons_locate_off>;
|
|
locate: () => Promise<typeof __icons_locate>;
|
|
'lock-keyhole-open': () => Promise<typeof __icons_lock_keyhole_open>;
|
|
'unlock-keyhole': () => Promise<typeof __icons_lock_keyhole_open>;
|
|
'lock-keyhole': () => Promise<typeof __icons_lock_keyhole>;
|
|
'lock-open': () => Promise<typeof __icons_lock_open>;
|
|
unlock: () => Promise<typeof __icons_lock_open>;
|
|
lock: () => Promise<typeof __icons_lock>;
|
|
'log-in': () => Promise<typeof __icons_log_in>;
|
|
'log-out': () => Promise<typeof __icons_log_out>;
|
|
logs: () => Promise<typeof __icons_logs>;
|
|
lollipop: () => Promise<typeof __icons_lollipop>;
|
|
luggage: () => Promise<typeof __icons_luggage>;
|
|
magnet: () => Promise<typeof __icons_magnet>;
|
|
'mail-check': () => Promise<typeof __icons_mail_check>;
|
|
'mail-minus': () => Promise<typeof __icons_mail_minus>;
|
|
'mail-open': () => Promise<typeof __icons_mail_open>;
|
|
'mail-plus': () => Promise<typeof __icons_mail_plus>;
|
|
'mail-question': () => Promise<typeof __icons_mail_question>;
|
|
'mail-search': () => Promise<typeof __icons_mail_search>;
|
|
'mail-warning': () => Promise<typeof __icons_mail_warning>;
|
|
'mail-x': () => Promise<typeof __icons_mail_x>;
|
|
mail: () => Promise<typeof __icons_mail>;
|
|
mailbox: () => Promise<typeof __icons_mailbox>;
|
|
mails: () => Promise<typeof __icons_mails>;
|
|
'map-pin-check-inside': () => Promise<typeof __icons_map_pin_check_inside>;
|
|
'map-pin-check': () => Promise<typeof __icons_map_pin_check>;
|
|
'map-pin-house': () => Promise<typeof __icons_map_pin_house>;
|
|
'map-pin-minus-inside': () => Promise<typeof __icons_map_pin_minus_inside>;
|
|
'map-pin-minus': () => Promise<typeof __icons_map_pin_minus>;
|
|
'map-pin-off': () => Promise<typeof __icons_map_pin_off>;
|
|
'map-pin-plus-inside': () => Promise<typeof __icons_map_pin_plus_inside>;
|
|
'map-pin-plus': () => Promise<typeof __icons_map_pin_plus>;
|
|
'map-pin-x-inside': () => Promise<typeof __icons_map_pin_x_inside>;
|
|
'map-pin-x': () => Promise<typeof __icons_map_pin_x>;
|
|
'map-pin': () => Promise<typeof __icons_map_pin>;
|
|
'map-pinned': () => Promise<typeof __icons_map_pinned>;
|
|
'map-plus': () => Promise<typeof __icons_map_plus>;
|
|
map: () => Promise<typeof __icons_map>;
|
|
'mars-stroke': () => Promise<typeof __icons_mars_stroke>;
|
|
mars: () => Promise<typeof __icons_mars>;
|
|
martini: () => Promise<typeof __icons_martini>;
|
|
'maximize-2': () => Promise<typeof __icons_maximize_2>;
|
|
maximize: () => Promise<typeof __icons_maximize>;
|
|
medal: () => Promise<typeof __icons_medal>;
|
|
'megaphone-off': () => Promise<typeof __icons_megaphone_off>;
|
|
megaphone: () => Promise<typeof __icons_megaphone>;
|
|
meh: () => Promise<typeof __icons_meh>;
|
|
'memory-stick': () => Promise<typeof __icons_memory_stick>;
|
|
menu: () => Promise<typeof __icons_menu>;
|
|
merge: () => Promise<typeof __icons_merge>;
|
|
'message-circle-code': () => Promise<typeof __icons_message_circle_code>;
|
|
'message-circle-dashed': () => Promise<typeof __icons_message_circle_dashed>;
|
|
'message-circle-heart': () => Promise<typeof __icons_message_circle_heart>;
|
|
'message-circle-more': () => Promise<typeof __icons_message_circle_more>;
|
|
'message-circle-off': () => Promise<typeof __icons_message_circle_off>;
|
|
'message-circle-plus': () => Promise<typeof __icons_message_circle_plus>;
|
|
'message-circle-question': () => Promise<typeof __icons_message_circle_question>;
|
|
'message-circle-reply': () => Promise<typeof __icons_message_circle_reply>;
|
|
'message-circle-warning': () => Promise<typeof __icons_message_circle_warning>;
|
|
'message-circle-x': () => Promise<typeof __icons_message_circle_x>;
|
|
'message-circle': () => Promise<typeof __icons_message_circle>;
|
|
'message-square-code': () => Promise<typeof __icons_message_square_code>;
|
|
'message-square-dashed': () => Promise<typeof __icons_message_square_dashed>;
|
|
'message-square-diff': () => Promise<typeof __icons_message_square_diff>;
|
|
'message-square-dot': () => Promise<typeof __icons_message_square_dot>;
|
|
'message-square-heart': () => Promise<typeof __icons_message_square_heart>;
|
|
'message-square-lock': () => Promise<typeof __icons_message_square_lock>;
|
|
'message-square-more': () => Promise<typeof __icons_message_square_more>;
|
|
'message-square-off': () => Promise<typeof __icons_message_square_off>;
|
|
'message-square-plus': () => Promise<typeof __icons_message_square_plus>;
|
|
'message-square-quote': () => Promise<typeof __icons_message_square_quote>;
|
|
'message-square-reply': () => Promise<typeof __icons_message_square_reply>;
|
|
'message-square-share': () => Promise<typeof __icons_message_square_share>;
|
|
'message-square-text': () => Promise<typeof __icons_message_square_text>;
|
|
'message-square-warning': () => Promise<typeof __icons_message_square_warning>;
|
|
'message-square-x': () => Promise<typeof __icons_message_square_x>;
|
|
'message-square': () => Promise<typeof __icons_message_square>;
|
|
'messages-square': () => Promise<typeof __icons_messages_square>;
|
|
'mic-off': () => Promise<typeof __icons_mic_off>;
|
|
'mic-vocal': () => Promise<typeof __icons_mic_vocal>;
|
|
'mic-2': () => Promise<typeof __icons_mic_vocal>;
|
|
mic: () => Promise<typeof __icons_mic>;
|
|
microchip: () => Promise<typeof __icons_microchip>;
|
|
microscope: () => Promise<typeof __icons_microscope>;
|
|
microwave: () => Promise<typeof __icons_microwave>;
|
|
milestone: () => Promise<typeof __icons_milestone>;
|
|
'milk-off': () => Promise<typeof __icons_milk_off>;
|
|
milk: () => Promise<typeof __icons_milk>;
|
|
'minimize-2': () => Promise<typeof __icons_minimize_2>;
|
|
minimize: () => Promise<typeof __icons_minimize>;
|
|
minus: () => Promise<typeof __icons_minus>;
|
|
'monitor-check': () => Promise<typeof __icons_monitor_check>;
|
|
'monitor-cog': () => Promise<typeof __icons_monitor_cog>;
|
|
'monitor-dot': () => Promise<typeof __icons_monitor_dot>;
|
|
'monitor-down': () => Promise<typeof __icons_monitor_down>;
|
|
'monitor-off': () => Promise<typeof __icons_monitor_off>;
|
|
'monitor-pause': () => Promise<typeof __icons_monitor_pause>;
|
|
'monitor-play': () => Promise<typeof __icons_monitor_play>;
|
|
'monitor-smartphone': () => Promise<typeof __icons_monitor_smartphone>;
|
|
'monitor-speaker': () => Promise<typeof __icons_monitor_speaker>;
|
|
'monitor-stop': () => Promise<typeof __icons_monitor_stop>;
|
|
'monitor-up': () => Promise<typeof __icons_monitor_up>;
|
|
'monitor-x': () => Promise<typeof __icons_monitor_x>;
|
|
monitor: () => Promise<typeof __icons_monitor>;
|
|
'moon-star': () => Promise<typeof __icons_moon_star>;
|
|
moon: () => Promise<typeof __icons_moon>;
|
|
'mountain-snow': () => Promise<typeof __icons_mountain_snow>;
|
|
mountain: () => Promise<typeof __icons_mountain>;
|
|
'mouse-off': () => Promise<typeof __icons_mouse_off>;
|
|
'mouse-pointer-2': () => Promise<typeof __icons_mouse_pointer_2>;
|
|
'mouse-pointer-ban': () => Promise<typeof __icons_mouse_pointer_ban>;
|
|
'mouse-pointer-click': () => Promise<typeof __icons_mouse_pointer_click>;
|
|
'mouse-pointer': () => Promise<typeof __icons_mouse_pointer>;
|
|
mouse: () => Promise<typeof __icons_mouse>;
|
|
'move-3d': () => Promise<typeof __icons_move_3d>;
|
|
'move-3-d': () => Promise<typeof __icons_move_3d>;
|
|
'move-diagonal-2': () => Promise<typeof __icons_move_diagonal_2>;
|
|
'move-diagonal': () => Promise<typeof __icons_move_diagonal>;
|
|
'move-down-left': () => Promise<typeof __icons_move_down_left>;
|
|
'move-down-right': () => Promise<typeof __icons_move_down_right>;
|
|
'move-down': () => Promise<typeof __icons_move_down>;
|
|
'move-horizontal': () => Promise<typeof __icons_move_horizontal>;
|
|
'move-left': () => Promise<typeof __icons_move_left>;
|
|
'move-right': () => Promise<typeof __icons_move_right>;
|
|
'move-up-left': () => Promise<typeof __icons_move_up_left>;
|
|
'move-up-right': () => Promise<typeof __icons_move_up_right>;
|
|
'move-up': () => Promise<typeof __icons_move_up>;
|
|
'move-vertical': () => Promise<typeof __icons_move_vertical>;
|
|
move: () => Promise<typeof __icons_move>;
|
|
'music-2': () => Promise<typeof __icons_music_2>;
|
|
'music-3': () => Promise<typeof __icons_music_3>;
|
|
'music-4': () => Promise<typeof __icons_music_4>;
|
|
music: () => Promise<typeof __icons_music>;
|
|
'navigation-2-off': () => Promise<typeof __icons_navigation_2_off>;
|
|
'navigation-2': () => Promise<typeof __icons_navigation_2>;
|
|
'navigation-off': () => Promise<typeof __icons_navigation_off>;
|
|
navigation: () => Promise<typeof __icons_navigation>;
|
|
network: () => Promise<typeof __icons_network>;
|
|
newspaper: () => Promise<typeof __icons_newspaper>;
|
|
nfc: () => Promise<typeof __icons_nfc>;
|
|
'non-binary': () => Promise<typeof __icons_non_binary>;
|
|
'notebook-pen': () => Promise<typeof __icons_notebook_pen>;
|
|
'notebook-tabs': () => Promise<typeof __icons_notebook_tabs>;
|
|
'notebook-text': () => Promise<typeof __icons_notebook_text>;
|
|
notebook: () => Promise<typeof __icons_notebook>;
|
|
'notepad-text-dashed': () => Promise<typeof __icons_notepad_text_dashed>;
|
|
'notepad-text': () => Promise<typeof __icons_notepad_text>;
|
|
'nut-off': () => Promise<typeof __icons_nut_off>;
|
|
nut: () => Promise<typeof __icons_nut>;
|
|
'octagon-alert': () => Promise<typeof __icons_octagon_alert>;
|
|
'alert-octagon': () => Promise<typeof __icons_octagon_alert>;
|
|
'octagon-minus': () => Promise<typeof __icons_octagon_minus>;
|
|
'octagon-pause': () => Promise<typeof __icons_octagon_pause>;
|
|
'pause-octagon': () => Promise<typeof __icons_octagon_pause>;
|
|
'octagon-x': () => Promise<typeof __icons_octagon_x>;
|
|
'x-octagon': () => Promise<typeof __icons_octagon_x>;
|
|
octagon: () => Promise<typeof __icons_octagon>;
|
|
omega: () => Promise<typeof __icons_omega>;
|
|
option: () => Promise<typeof __icons_option>;
|
|
orbit: () => Promise<typeof __icons_orbit>;
|
|
origami: () => Promise<typeof __icons_origami>;
|
|
'package-2': () => Promise<typeof __icons_package_2>;
|
|
'package-check': () => Promise<typeof __icons_package_check>;
|
|
'package-minus': () => Promise<typeof __icons_package_minus>;
|
|
'package-open': () => Promise<typeof __icons_package_open>;
|
|
'package-plus': () => Promise<typeof __icons_package_plus>;
|
|
'package-search': () => Promise<typeof __icons_package_search>;
|
|
'package-x': () => Promise<typeof __icons_package_x>;
|
|
package: () => Promise<typeof __icons_package>;
|
|
'paint-bucket': () => Promise<typeof __icons_paint_bucket>;
|
|
'paint-roller': () => Promise<typeof __icons_paint_roller>;
|
|
'paintbrush-vertical': () => Promise<typeof __icons_paintbrush_vertical>;
|
|
'paintbrush-2': () => Promise<typeof __icons_paintbrush_vertical>;
|
|
paintbrush: () => Promise<typeof __icons_paintbrush>;
|
|
palette: () => Promise<typeof __icons_palette>;
|
|
'panel-bottom-close': () => Promise<typeof __icons_panel_bottom_close>;
|
|
'panel-bottom-dashed': () => Promise<typeof __icons_panel_bottom_dashed>;
|
|
'panel-bottom-inactive': () => Promise<typeof __icons_panel_bottom_dashed>;
|
|
'panel-bottom-open': () => Promise<typeof __icons_panel_bottom_open>;
|
|
'panel-bottom': () => Promise<typeof __icons_panel_bottom>;
|
|
'panel-left-close': () => Promise<typeof __icons_panel_left_close>;
|
|
'sidebar-close': () => Promise<typeof __icons_panel_left_close>;
|
|
'panel-left-dashed': () => Promise<typeof __icons_panel_left_dashed>;
|
|
'panel-left-inactive': () => Promise<typeof __icons_panel_left_dashed>;
|
|
'panel-left-open': () => Promise<typeof __icons_panel_left_open>;
|
|
'sidebar-open': () => Promise<typeof __icons_panel_left_open>;
|
|
'panel-left': () => Promise<typeof __icons_panel_left>;
|
|
sidebar: () => Promise<typeof __icons_panel_left>;
|
|
'panel-right-close': () => Promise<typeof __icons_panel_right_close>;
|
|
'panel-right-dashed': () => Promise<typeof __icons_panel_right_dashed>;
|
|
'panel-right-inactive': () => Promise<typeof __icons_panel_right_dashed>;
|
|
'panel-right-open': () => Promise<typeof __icons_panel_right_open>;
|
|
'panel-right': () => Promise<typeof __icons_panel_right>;
|
|
'panel-top-close': () => Promise<typeof __icons_panel_top_close>;
|
|
'panel-top-dashed': () => Promise<typeof __icons_panel_top_dashed>;
|
|
'panel-top-inactive': () => Promise<typeof __icons_panel_top_dashed>;
|
|
'panel-top-open': () => Promise<typeof __icons_panel_top_open>;
|
|
'panel-top': () => Promise<typeof __icons_panel_top>;
|
|
'panels-left-bottom': () => Promise<typeof __icons_panels_left_bottom>;
|
|
'panels-right-bottom': () => Promise<typeof __icons_panels_right_bottom>;
|
|
'panels-top-left': () => Promise<typeof __icons_panels_top_left>;
|
|
layout: () => Promise<typeof __icons_panels_top_left>;
|
|
paperclip: () => Promise<typeof __icons_paperclip>;
|
|
parentheses: () => Promise<typeof __icons_parentheses>;
|
|
'parking-meter': () => Promise<typeof __icons_parking_meter>;
|
|
'party-popper': () => Promise<typeof __icons_party_popper>;
|
|
pause: () => Promise<typeof __icons_pause>;
|
|
'paw-print': () => Promise<typeof __icons_paw_print>;
|
|
'pc-case': () => Promise<typeof __icons_pc_case>;
|
|
'pen-line': () => Promise<typeof __icons_pen_line>;
|
|
'edit-3': () => Promise<typeof __icons_pen_line>;
|
|
'pen-off': () => Promise<typeof __icons_pen_off>;
|
|
'pen-tool': () => Promise<typeof __icons_pen_tool>;
|
|
pen: () => Promise<typeof __icons_pen>;
|
|
'edit-2': () => Promise<typeof __icons_pen>;
|
|
'pencil-line': () => Promise<typeof __icons_pencil_line>;
|
|
'pencil-off': () => Promise<typeof __icons_pencil_off>;
|
|
'pencil-ruler': () => Promise<typeof __icons_pencil_ruler>;
|
|
pencil: () => Promise<typeof __icons_pencil>;
|
|
pentagon: () => Promise<typeof __icons_pentagon>;
|
|
percent: () => Promise<typeof __icons_percent>;
|
|
'person-standing': () => Promise<typeof __icons_person_standing>;
|
|
'philippine-peso': () => Promise<typeof __icons_philippine_peso>;
|
|
'phone-call': () => Promise<typeof __icons_phone_call>;
|
|
'phone-forwarded': () => Promise<typeof __icons_phone_forwarded>;
|
|
'phone-incoming': () => Promise<typeof __icons_phone_incoming>;
|
|
'phone-missed': () => Promise<typeof __icons_phone_missed>;
|
|
'phone-off': () => Promise<typeof __icons_phone_off>;
|
|
'phone-outgoing': () => Promise<typeof __icons_phone_outgoing>;
|
|
phone: () => Promise<typeof __icons_phone>;
|
|
pi: () => Promise<typeof __icons_pi>;
|
|
piano: () => Promise<typeof __icons_piano>;
|
|
pickaxe: () => Promise<typeof __icons_pickaxe>;
|
|
'picture-in-picture-2': () => Promise<typeof __icons_picture_in_picture_2>;
|
|
'picture-in-picture': () => Promise<typeof __icons_picture_in_picture>;
|
|
'piggy-bank': () => Promise<typeof __icons_piggy_bank>;
|
|
'pilcrow-left': () => Promise<typeof __icons_pilcrow_left>;
|
|
'pilcrow-right': () => Promise<typeof __icons_pilcrow_right>;
|
|
pilcrow: () => Promise<typeof __icons_pilcrow>;
|
|
'pill-bottle': () => Promise<typeof __icons_pill_bottle>;
|
|
pill: () => Promise<typeof __icons_pill>;
|
|
'pin-off': () => Promise<typeof __icons_pin_off>;
|
|
pin: () => Promise<typeof __icons_pin>;
|
|
pipette: () => Promise<typeof __icons_pipette>;
|
|
pizza: () => Promise<typeof __icons_pizza>;
|
|
'plane-landing': () => Promise<typeof __icons_plane_landing>;
|
|
'plane-takeoff': () => Promise<typeof __icons_plane_takeoff>;
|
|
plane: () => Promise<typeof __icons_plane>;
|
|
play: () => Promise<typeof __icons_play>;
|
|
'plug-2': () => Promise<typeof __icons_plug_2>;
|
|
'plug-zap': () => Promise<typeof __icons_plug_zap>;
|
|
'plug-zap-2': () => Promise<typeof __icons_plug_zap>;
|
|
plug: () => Promise<typeof __icons_plug>;
|
|
plus: () => Promise<typeof __icons_plus>;
|
|
'pocket-knife': () => Promise<typeof __icons_pocket_knife>;
|
|
pocket: () => Promise<typeof __icons_pocket>;
|
|
podcast: () => Promise<typeof __icons_podcast>;
|
|
'pointer-off': () => Promise<typeof __icons_pointer_off>;
|
|
pointer: () => Promise<typeof __icons_pointer>;
|
|
popcorn: () => Promise<typeof __icons_popcorn>;
|
|
popsicle: () => Promise<typeof __icons_popsicle>;
|
|
'pound-sterling': () => Promise<typeof __icons_pound_sterling>;
|
|
'power-off': () => Promise<typeof __icons_power_off>;
|
|
power: () => Promise<typeof __icons_power>;
|
|
presentation: () => Promise<typeof __icons_presentation>;
|
|
'printer-check': () => Promise<typeof __icons_printer_check>;
|
|
printer: () => Promise<typeof __icons_printer>;
|
|
projector: () => Promise<typeof __icons_projector>;
|
|
proportions: () => Promise<typeof __icons_proportions>;
|
|
puzzle: () => Promise<typeof __icons_puzzle>;
|
|
pyramid: () => Promise<typeof __icons_pyramid>;
|
|
'qr-code': () => Promise<typeof __icons_qr_code>;
|
|
quote: () => Promise<typeof __icons_quote>;
|
|
rabbit: () => Promise<typeof __icons_rabbit>;
|
|
radar: () => Promise<typeof __icons_radar>;
|
|
radiation: () => Promise<typeof __icons_radiation>;
|
|
radical: () => Promise<typeof __icons_radical>;
|
|
'radio-receiver': () => Promise<typeof __icons_radio_receiver>;
|
|
'radio-tower': () => Promise<typeof __icons_radio_tower>;
|
|
radio: () => Promise<typeof __icons_radio>;
|
|
radius: () => Promise<typeof __icons_radius>;
|
|
'rail-symbol': () => Promise<typeof __icons_rail_symbol>;
|
|
rainbow: () => Promise<typeof __icons_rainbow>;
|
|
rat: () => Promise<typeof __icons_rat>;
|
|
ratio: () => Promise<typeof __icons_ratio>;
|
|
'receipt-cent': () => Promise<typeof __icons_receipt_cent>;
|
|
'receipt-euro': () => Promise<typeof __icons_receipt_euro>;
|
|
'receipt-indian-rupee': () => Promise<typeof __icons_receipt_indian_rupee>;
|
|
'receipt-japanese-yen': () => Promise<typeof __icons_receipt_japanese_yen>;
|
|
'receipt-pound-sterling': () => Promise<typeof __icons_receipt_pound_sterling>;
|
|
'receipt-russian-ruble': () => Promise<typeof __icons_receipt_russian_ruble>;
|
|
'receipt-swiss-franc': () => Promise<typeof __icons_receipt_swiss_franc>;
|
|
'receipt-text': () => Promise<typeof __icons_receipt_text>;
|
|
receipt: () => Promise<typeof __icons_receipt>;
|
|
'rectangle-ellipsis': () => Promise<typeof __icons_rectangle_ellipsis>;
|
|
'form-input': () => Promise<typeof __icons_rectangle_ellipsis>;
|
|
'rectangle-horizontal': () => Promise<typeof __icons_rectangle_horizontal>;
|
|
'rectangle-vertical': () => Promise<typeof __icons_rectangle_vertical>;
|
|
recycle: () => Promise<typeof __icons_recycle>;
|
|
'redo-2': () => Promise<typeof __icons_redo_2>;
|
|
'redo-dot': () => Promise<typeof __icons_redo_dot>;
|
|
redo: () => Promise<typeof __icons_redo>;
|
|
'refresh-ccw-dot': () => Promise<typeof __icons_refresh_ccw_dot>;
|
|
'refresh-ccw': () => Promise<typeof __icons_refresh_ccw>;
|
|
'refresh-cw-off': () => Promise<typeof __icons_refresh_cw_off>;
|
|
'refresh-cw': () => Promise<typeof __icons_refresh_cw>;
|
|
refrigerator: () => Promise<typeof __icons_refrigerator>;
|
|
regex: () => Promise<typeof __icons_regex>;
|
|
'remove-formatting': () => Promise<typeof __icons_remove_formatting>;
|
|
'repeat-1': () => Promise<typeof __icons_repeat_1>;
|
|
'repeat-2': () => Promise<typeof __icons_repeat_2>;
|
|
repeat: () => Promise<typeof __icons_repeat>;
|
|
'replace-all': () => Promise<typeof __icons_replace_all>;
|
|
replace: () => Promise<typeof __icons_replace>;
|
|
'reply-all': () => Promise<typeof __icons_reply_all>;
|
|
reply: () => Promise<typeof __icons_reply>;
|
|
rewind: () => Promise<typeof __icons_rewind>;
|
|
ribbon: () => Promise<typeof __icons_ribbon>;
|
|
rocket: () => Promise<typeof __icons_rocket>;
|
|
'rocking-chair': () => Promise<typeof __icons_rocking_chair>;
|
|
'roller-coaster': () => Promise<typeof __icons_roller_coaster>;
|
|
'rotate-3d': () => Promise<typeof __icons_rotate_3d>;
|
|
'rotate-3-d': () => Promise<typeof __icons_rotate_3d>;
|
|
'rotate-ccw-square': () => Promise<typeof __icons_rotate_ccw_square>;
|
|
'rotate-ccw': () => Promise<typeof __icons_rotate_ccw>;
|
|
'rotate-cw-square': () => Promise<typeof __icons_rotate_cw_square>;
|
|
'rotate-cw': () => Promise<typeof __icons_rotate_cw>;
|
|
'route-off': () => Promise<typeof __icons_route_off>;
|
|
route: () => Promise<typeof __icons_route>;
|
|
router: () => Promise<typeof __icons_router>;
|
|
'rows-2': () => Promise<typeof __icons_rows_2>;
|
|
rows: () => Promise<typeof __icons_rows_2>;
|
|
'rows-3': () => Promise<typeof __icons_rows_3>;
|
|
'panels-top-bottom': () => Promise<typeof __icons_rows_3>;
|
|
'rows-4': () => Promise<typeof __icons_rows_4>;
|
|
rss: () => Promise<typeof __icons_rss>;
|
|
ruler: () => Promise<typeof __icons_ruler>;
|
|
'russian-ruble': () => Promise<typeof __icons_russian_ruble>;
|
|
sailboat: () => Promise<typeof __icons_sailboat>;
|
|
salad: () => Promise<typeof __icons_salad>;
|
|
sandwich: () => Promise<typeof __icons_sandwich>;
|
|
'satellite-dish': () => Promise<typeof __icons_satellite_dish>;
|
|
satellite: () => Promise<typeof __icons_satellite>;
|
|
'saudi-riyal': () => Promise<typeof __icons_saudi_riyal>;
|
|
'save-all': () => Promise<typeof __icons_save_all>;
|
|
'save-off': () => Promise<typeof __icons_save_off>;
|
|
save: () => Promise<typeof __icons_save>;
|
|
'scale-3d': () => Promise<typeof __icons_scale_3d>;
|
|
'scale-3-d': () => Promise<typeof __icons_scale_3d>;
|
|
scale: () => Promise<typeof __icons_scale>;
|
|
scaling: () => Promise<typeof __icons_scaling>;
|
|
'scan-barcode': () => Promise<typeof __icons_scan_barcode>;
|
|
'scan-eye': () => Promise<typeof __icons_scan_eye>;
|
|
'scan-face': () => Promise<typeof __icons_scan_face>;
|
|
'scan-heart': () => Promise<typeof __icons_scan_heart>;
|
|
'scan-line': () => Promise<typeof __icons_scan_line>;
|
|
'scan-qr-code': () => Promise<typeof __icons_scan_qr_code>;
|
|
'scan-search': () => Promise<typeof __icons_scan_search>;
|
|
'scan-text': () => Promise<typeof __icons_scan_text>;
|
|
scan: () => Promise<typeof __icons_scan>;
|
|
school: () => Promise<typeof __icons_school>;
|
|
'scissors-line-dashed': () => Promise<typeof __icons_scissors_line_dashed>;
|
|
scissors: () => Promise<typeof __icons_scissors>;
|
|
'screen-share-off': () => Promise<typeof __icons_screen_share_off>;
|
|
'screen-share': () => Promise<typeof __icons_screen_share>;
|
|
'scroll-text': () => Promise<typeof __icons_scroll_text>;
|
|
scroll: () => Promise<typeof __icons_scroll>;
|
|
'search-check': () => Promise<typeof __icons_search_check>;
|
|
'search-code': () => Promise<typeof __icons_search_code>;
|
|
'search-slash': () => Promise<typeof __icons_search_slash>;
|
|
'search-x': () => Promise<typeof __icons_search_x>;
|
|
search: () => Promise<typeof __icons_search>;
|
|
section: () => Promise<typeof __icons_section>;
|
|
'send-horizontal': () => Promise<typeof __icons_send_horizontal>;
|
|
'send-horizonal': () => Promise<typeof __icons_send_horizontal>;
|
|
'send-to-back': () => Promise<typeof __icons_send_to_back>;
|
|
send: () => Promise<typeof __icons_send>;
|
|
'separator-horizontal': () => Promise<typeof __icons_separator_horizontal>;
|
|
'separator-vertical': () => Promise<typeof __icons_separator_vertical>;
|
|
'server-cog': () => Promise<typeof __icons_server_cog>;
|
|
'server-crash': () => Promise<typeof __icons_server_crash>;
|
|
'server-off': () => Promise<typeof __icons_server_off>;
|
|
server: () => Promise<typeof __icons_server>;
|
|
'settings-2': () => Promise<typeof __icons_settings_2>;
|
|
settings: () => Promise<typeof __icons_settings>;
|
|
shapes: () => Promise<typeof __icons_shapes>;
|
|
'share-2': () => Promise<typeof __icons_share_2>;
|
|
share: () => Promise<typeof __icons_share>;
|
|
sheet: () => Promise<typeof __icons_sheet>;
|
|
shell: () => Promise<typeof __icons_shell>;
|
|
'shield-alert': () => Promise<typeof __icons_shield_alert>;
|
|
'shield-ban': () => Promise<typeof __icons_shield_ban>;
|
|
'shield-check': () => Promise<typeof __icons_shield_check>;
|
|
'shield-ellipsis': () => Promise<typeof __icons_shield_ellipsis>;
|
|
'shield-half': () => Promise<typeof __icons_shield_half>;
|
|
'shield-minus': () => Promise<typeof __icons_shield_minus>;
|
|
'shield-off': () => Promise<typeof __icons_shield_off>;
|
|
'shield-plus': () => Promise<typeof __icons_shield_plus>;
|
|
'shield-question': () => Promise<typeof __icons_shield_question>;
|
|
'shield-user': () => Promise<typeof __icons_shield_user>;
|
|
'shield-x': () => Promise<typeof __icons_shield_x>;
|
|
'shield-close': () => Promise<typeof __icons_shield_x>;
|
|
shield: () => Promise<typeof __icons_shield>;
|
|
'ship-wheel': () => Promise<typeof __icons_ship_wheel>;
|
|
ship: () => Promise<typeof __icons_ship>;
|
|
shirt: () => Promise<typeof __icons_shirt>;
|
|
'shopping-bag': () => Promise<typeof __icons_shopping_bag>;
|
|
'shopping-basket': () => Promise<typeof __icons_shopping_basket>;
|
|
'shopping-cart': () => Promise<typeof __icons_shopping_cart>;
|
|
shovel: () => Promise<typeof __icons_shovel>;
|
|
'shower-head': () => Promise<typeof __icons_shower_head>;
|
|
shrimp: () => Promise<typeof __icons_shrimp>;
|
|
shrink: () => Promise<typeof __icons_shrink>;
|
|
shrub: () => Promise<typeof __icons_shrub>;
|
|
shuffle: () => Promise<typeof __icons_shuffle>;
|
|
sigma: () => Promise<typeof __icons_sigma>;
|
|
'signal-high': () => Promise<typeof __icons_signal_high>;
|
|
'signal-low': () => Promise<typeof __icons_signal_low>;
|
|
'signal-medium': () => Promise<typeof __icons_signal_medium>;
|
|
'signal-zero': () => Promise<typeof __icons_signal_zero>;
|
|
signal: () => Promise<typeof __icons_signal>;
|
|
signature: () => Promise<typeof __icons_signature>;
|
|
'signpost-big': () => Promise<typeof __icons_signpost_big>;
|
|
signpost: () => Promise<typeof __icons_signpost>;
|
|
siren: () => Promise<typeof __icons_siren>;
|
|
'skip-back': () => Promise<typeof __icons_skip_back>;
|
|
'skip-forward': () => Promise<typeof __icons_skip_forward>;
|
|
skull: () => Promise<typeof __icons_skull>;
|
|
slack: () => Promise<typeof __icons_slack>;
|
|
slash: () => Promise<typeof __icons_slash>;
|
|
slice: () => Promise<typeof __icons_slice>;
|
|
'sliders-horizontal': () => Promise<typeof __icons_sliders_horizontal>;
|
|
'sliders-vertical': () => Promise<typeof __icons_sliders_vertical>;
|
|
sliders: () => Promise<typeof __icons_sliders_vertical>;
|
|
'smartphone-charging': () => Promise<typeof __icons_smartphone_charging>;
|
|
'smartphone-nfc': () => Promise<typeof __icons_smartphone_nfc>;
|
|
smartphone: () => Promise<typeof __icons_smartphone>;
|
|
'smile-plus': () => Promise<typeof __icons_smile_plus>;
|
|
smile: () => Promise<typeof __icons_smile>;
|
|
snail: () => Promise<typeof __icons_snail>;
|
|
snowflake: () => Promise<typeof __icons_snowflake>;
|
|
sofa: () => Promise<typeof __icons_sofa>;
|
|
soup: () => Promise<typeof __icons_soup>;
|
|
space: () => Promise<typeof __icons_space>;
|
|
spade: () => Promise<typeof __icons_spade>;
|
|
sparkle: () => Promise<typeof __icons_sparkle>;
|
|
sparkles: () => Promise<typeof __icons_sparkles>;
|
|
stars: () => Promise<typeof __icons_sparkles>;
|
|
speaker: () => Promise<typeof __icons_speaker>;
|
|
speech: () => Promise<typeof __icons_speech>;
|
|
'spell-check-2': () => Promise<typeof __icons_spell_check_2>;
|
|
'spell-check': () => Promise<typeof __icons_spell_check>;
|
|
'spline-pointer': () => Promise<typeof __icons_spline_pointer>;
|
|
spline: () => Promise<typeof __icons_spline>;
|
|
split: () => Promise<typeof __icons_split>;
|
|
'spray-can': () => Promise<typeof __icons_spray_can>;
|
|
sprout: () => Promise<typeof __icons_sprout>;
|
|
'square-activity': () => Promise<typeof __icons_square_activity>;
|
|
'activity-square': () => Promise<typeof __icons_square_activity>;
|
|
'square-arrow-down-left': () => Promise<typeof __icons_square_arrow_down_left>;
|
|
'arrow-down-left-square': () => Promise<typeof __icons_square_arrow_down_left>;
|
|
'square-arrow-down-right': () => Promise<typeof __icons_square_arrow_down_right>;
|
|
'arrow-down-right-square': () => Promise<typeof __icons_square_arrow_down_right>;
|
|
'square-arrow-down': () => Promise<typeof __icons_square_arrow_down>;
|
|
'arrow-down-square': () => Promise<typeof __icons_square_arrow_down>;
|
|
'square-arrow-left': () => Promise<typeof __icons_square_arrow_left>;
|
|
'arrow-left-square': () => Promise<typeof __icons_square_arrow_left>;
|
|
'square-arrow-out-down-left': () => Promise<typeof __icons_square_arrow_out_down_left>;
|
|
'arrow-down-left-from-square': () => Promise<typeof __icons_square_arrow_out_down_left>;
|
|
'square-arrow-out-down-right': () => Promise<typeof __icons_square_arrow_out_down_right>;
|
|
'arrow-down-right-from-square': () => Promise<typeof __icons_square_arrow_out_down_right>;
|
|
'square-arrow-out-up-left': () => Promise<typeof __icons_square_arrow_out_up_left>;
|
|
'arrow-up-left-from-square': () => Promise<typeof __icons_square_arrow_out_up_left>;
|
|
'square-arrow-out-up-right': () => Promise<typeof __icons_square_arrow_out_up_right>;
|
|
'arrow-up-right-from-square': () => Promise<typeof __icons_square_arrow_out_up_right>;
|
|
'square-arrow-right': () => Promise<typeof __icons_square_arrow_right>;
|
|
'arrow-right-square': () => Promise<typeof __icons_square_arrow_right>;
|
|
'square-arrow-up-left': () => Promise<typeof __icons_square_arrow_up_left>;
|
|
'arrow-up-left-square': () => Promise<typeof __icons_square_arrow_up_left>;
|
|
'square-arrow-up-right': () => Promise<typeof __icons_square_arrow_up_right>;
|
|
'arrow-up-right-square': () => Promise<typeof __icons_square_arrow_up_right>;
|
|
'square-arrow-up': () => Promise<typeof __icons_square_arrow_up>;
|
|
'arrow-up-square': () => Promise<typeof __icons_square_arrow_up>;
|
|
'square-asterisk': () => Promise<typeof __icons_square_asterisk>;
|
|
'asterisk-square': () => Promise<typeof __icons_square_asterisk>;
|
|
'square-bottom-dashed-scissors': () => Promise<typeof __icons_square_bottom_dashed_scissors>;
|
|
'scissors-square-dashed-bottom': () => Promise<typeof __icons_square_bottom_dashed_scissors>;
|
|
'square-chart-gantt': () => Promise<typeof __icons_square_chart_gantt>;
|
|
'gantt-chart-square': () => Promise<typeof __icons_square_chart_gantt>;
|
|
'square-gantt-chart': () => Promise<typeof __icons_square_chart_gantt>;
|
|
'square-check-big': () => Promise<typeof __icons_square_check_big>;
|
|
'check-square': () => Promise<typeof __icons_square_check_big>;
|
|
'square-check': () => Promise<typeof __icons_square_check>;
|
|
'check-square-2': () => Promise<typeof __icons_square_check>;
|
|
'square-chevron-down': () => Promise<typeof __icons_square_chevron_down>;
|
|
'chevron-down-square': () => Promise<typeof __icons_square_chevron_down>;
|
|
'square-chevron-left': () => Promise<typeof __icons_square_chevron_left>;
|
|
'chevron-left-square': () => Promise<typeof __icons_square_chevron_left>;
|
|
'square-chevron-right': () => Promise<typeof __icons_square_chevron_right>;
|
|
'chevron-right-square': () => Promise<typeof __icons_square_chevron_right>;
|
|
'square-chevron-up': () => Promise<typeof __icons_square_chevron_up>;
|
|
'chevron-up-square': () => Promise<typeof __icons_square_chevron_up>;
|
|
'square-code': () => Promise<typeof __icons_square_code>;
|
|
'code-square': () => Promise<typeof __icons_square_code>;
|
|
'square-dashed-bottom-code': () => Promise<typeof __icons_square_dashed_bottom_code>;
|
|
'square-dashed-bottom': () => Promise<typeof __icons_square_dashed_bottom>;
|
|
'square-dashed-kanban': () => Promise<typeof __icons_square_dashed_kanban>;
|
|
'kanban-square-dashed': () => Promise<typeof __icons_square_dashed_kanban>;
|
|
'square-dashed-mouse-pointer': () => Promise<typeof __icons_square_dashed_mouse_pointer>;
|
|
'mouse-pointer-square-dashed': () => Promise<typeof __icons_square_dashed_mouse_pointer>;
|
|
'square-dashed': () => Promise<typeof __icons_square_dashed>;
|
|
'box-select': () => Promise<typeof __icons_square_dashed>;
|
|
'square-divide': () => Promise<typeof __icons_square_divide>;
|
|
'divide-square': () => Promise<typeof __icons_square_divide>;
|
|
'square-dot': () => Promise<typeof __icons_square_dot>;
|
|
'dot-square': () => Promise<typeof __icons_square_dot>;
|
|
'square-equal': () => Promise<typeof __icons_square_equal>;
|
|
'equal-square': () => Promise<typeof __icons_square_equal>;
|
|
'square-function': () => Promise<typeof __icons_square_function>;
|
|
'function-square': () => Promise<typeof __icons_square_function>;
|
|
'square-kanban': () => Promise<typeof __icons_square_kanban>;
|
|
'kanban-square': () => Promise<typeof __icons_square_kanban>;
|
|
'square-library': () => Promise<typeof __icons_square_library>;
|
|
'library-square': () => Promise<typeof __icons_square_library>;
|
|
'square-m': () => Promise<typeof __icons_square_m>;
|
|
'm-square': () => Promise<typeof __icons_square_m>;
|
|
'square-menu': () => Promise<typeof __icons_square_menu>;
|
|
'menu-square': () => Promise<typeof __icons_square_menu>;
|
|
'square-minus': () => Promise<typeof __icons_square_minus>;
|
|
'minus-square': () => Promise<typeof __icons_square_minus>;
|
|
'square-mouse-pointer': () => Promise<typeof __icons_square_mouse_pointer>;
|
|
inspect: () => Promise<typeof __icons_square_mouse_pointer>;
|
|
'square-parking-off': () => Promise<typeof __icons_square_parking_off>;
|
|
'parking-square-off': () => Promise<typeof __icons_square_parking_off>;
|
|
'square-parking': () => Promise<typeof __icons_square_parking>;
|
|
'parking-square': () => Promise<typeof __icons_square_parking>;
|
|
'square-pen': () => Promise<typeof __icons_square_pen>;
|
|
'pen-box': () => Promise<typeof __icons_square_pen>;
|
|
edit: () => Promise<typeof __icons_square_pen>;
|
|
'pen-square': () => Promise<typeof __icons_square_pen>;
|
|
'square-percent': () => Promise<typeof __icons_square_percent>;
|
|
'percent-square': () => Promise<typeof __icons_square_percent>;
|
|
'square-pi': () => Promise<typeof __icons_square_pi>;
|
|
'pi-square': () => Promise<typeof __icons_square_pi>;
|
|
'square-pilcrow': () => Promise<typeof __icons_square_pilcrow>;
|
|
'pilcrow-square': () => Promise<typeof __icons_square_pilcrow>;
|
|
'square-play': () => Promise<typeof __icons_square_play>;
|
|
'play-square': () => Promise<typeof __icons_square_play>;
|
|
'square-plus': () => Promise<typeof __icons_square_plus>;
|
|
'plus-square': () => Promise<typeof __icons_square_plus>;
|
|
'square-power': () => Promise<typeof __icons_square_power>;
|
|
'power-square': () => Promise<typeof __icons_square_power>;
|
|
'square-radical': () => Promise<typeof __icons_square_radical>;
|
|
'square-round-corner': () => Promise<typeof __icons_square_round_corner>;
|
|
'square-scissors': () => Promise<typeof __icons_square_scissors>;
|
|
'scissors-square': () => Promise<typeof __icons_square_scissors>;
|
|
'square-sigma': () => Promise<typeof __icons_square_sigma>;
|
|
'sigma-square': () => Promise<typeof __icons_square_sigma>;
|
|
'square-slash': () => Promise<typeof __icons_square_slash>;
|
|
'slash-square': () => Promise<typeof __icons_square_slash>;
|
|
'square-split-horizontal': () => Promise<typeof __icons_square_split_horizontal>;
|
|
'split-square-horizontal': () => Promise<typeof __icons_square_split_horizontal>;
|
|
'square-split-vertical': () => Promise<typeof __icons_square_split_vertical>;
|
|
'split-square-vertical': () => Promise<typeof __icons_square_split_vertical>;
|
|
'square-square': () => Promise<typeof __icons_square_square>;
|
|
'square-stack': () => Promise<typeof __icons_square_stack>;
|
|
'square-terminal': () => Promise<typeof __icons_square_terminal>;
|
|
'terminal-square': () => Promise<typeof __icons_square_terminal>;
|
|
'square-user-round': () => Promise<typeof __icons_square_user_round>;
|
|
'user-square-2': () => Promise<typeof __icons_square_user_round>;
|
|
'square-user': () => Promise<typeof __icons_square_user>;
|
|
'user-square': () => Promise<typeof __icons_square_user>;
|
|
'square-x': () => Promise<typeof __icons_square_x>;
|
|
'x-square': () => Promise<typeof __icons_square_x>;
|
|
square: () => Promise<typeof __icons_square>;
|
|
squircle: () => Promise<typeof __icons_squircle>;
|
|
squirrel: () => Promise<typeof __icons_squirrel>;
|
|
stamp: () => Promise<typeof __icons_stamp>;
|
|
'star-half': () => Promise<typeof __icons_star_half>;
|
|
'star-off': () => Promise<typeof __icons_star_off>;
|
|
star: () => Promise<typeof __icons_star>;
|
|
'step-back': () => Promise<typeof __icons_step_back>;
|
|
'step-forward': () => Promise<typeof __icons_step_forward>;
|
|
stethoscope: () => Promise<typeof __icons_stethoscope>;
|
|
sticker: () => Promise<typeof __icons_sticker>;
|
|
'sticky-note': () => Promise<typeof __icons_sticky_note>;
|
|
store: () => Promise<typeof __icons_store>;
|
|
'stretch-horizontal': () => Promise<typeof __icons_stretch_horizontal>;
|
|
'stretch-vertical': () => Promise<typeof __icons_stretch_vertical>;
|
|
strikethrough: () => Promise<typeof __icons_strikethrough>;
|
|
subscript: () => Promise<typeof __icons_subscript>;
|
|
'sun-dim': () => Promise<typeof __icons_sun_dim>;
|
|
'sun-medium': () => Promise<typeof __icons_sun_medium>;
|
|
'sun-moon': () => Promise<typeof __icons_sun_moon>;
|
|
'sun-snow': () => Promise<typeof __icons_sun_snow>;
|
|
sun: () => Promise<typeof __icons_sun>;
|
|
sunrise: () => Promise<typeof __icons_sunrise>;
|
|
sunset: () => Promise<typeof __icons_sunset>;
|
|
superscript: () => Promise<typeof __icons_superscript>;
|
|
'swatch-book': () => Promise<typeof __icons_swatch_book>;
|
|
'swiss-franc': () => Promise<typeof __icons_swiss_franc>;
|
|
'switch-camera': () => Promise<typeof __icons_switch_camera>;
|
|
sword: () => Promise<typeof __icons_sword>;
|
|
swords: () => Promise<typeof __icons_swords>;
|
|
syringe: () => Promise<typeof __icons_syringe>;
|
|
'table-2': () => Promise<typeof __icons_table_2>;
|
|
'table-cells-merge': () => Promise<typeof __icons_table_cells_merge>;
|
|
'table-cells-split': () => Promise<typeof __icons_table_cells_split>;
|
|
'table-columns-split': () => Promise<typeof __icons_table_columns_split>;
|
|
'table-of-contents': () => Promise<typeof __icons_table_of_contents>;
|
|
'table-properties': () => Promise<typeof __icons_table_properties>;
|
|
'table-rows-split': () => Promise<typeof __icons_table_rows_split>;
|
|
table: () => Promise<typeof __icons_table>;
|
|
'tablet-smartphone': () => Promise<typeof __icons_tablet_smartphone>;
|
|
tablet: () => Promise<typeof __icons_tablet>;
|
|
tablets: () => Promise<typeof __icons_tablets>;
|
|
tag: () => Promise<typeof __icons_tag>;
|
|
tags: () => Promise<typeof __icons_tags>;
|
|
'tally-1': () => Promise<typeof __icons_tally_1>;
|
|
'tally-2': () => Promise<typeof __icons_tally_2>;
|
|
'tally-3': () => Promise<typeof __icons_tally_3>;
|
|
'tally-4': () => Promise<typeof __icons_tally_4>;
|
|
'tally-5': () => Promise<typeof __icons_tally_5>;
|
|
tangent: () => Promise<typeof __icons_tangent>;
|
|
target: () => Promise<typeof __icons_target>;
|
|
telescope: () => Promise<typeof __icons_telescope>;
|
|
'tent-tree': () => Promise<typeof __icons_tent_tree>;
|
|
tent: () => Promise<typeof __icons_tent>;
|
|
terminal: () => Promise<typeof __icons_terminal>;
|
|
'test-tube-diagonal': () => Promise<typeof __icons_test_tube_diagonal>;
|
|
'test-tube-2': () => Promise<typeof __icons_test_tube_diagonal>;
|
|
'test-tube': () => Promise<typeof __icons_test_tube>;
|
|
'test-tubes': () => Promise<typeof __icons_test_tubes>;
|
|
'text-cursor-input': () => Promise<typeof __icons_text_cursor_input>;
|
|
'text-cursor': () => Promise<typeof __icons_text_cursor>;
|
|
'text-quote': () => Promise<typeof __icons_text_quote>;
|
|
'text-search': () => Promise<typeof __icons_text_search>;
|
|
'text-select': () => Promise<typeof __icons_text_select>;
|
|
'text-selection': () => Promise<typeof __icons_text_select>;
|
|
text: () => Promise<typeof __icons_text>;
|
|
theater: () => Promise<typeof __icons_theater>;
|
|
'thermometer-snowflake': () => Promise<typeof __icons_thermometer_snowflake>;
|
|
'thermometer-sun': () => Promise<typeof __icons_thermometer_sun>;
|
|
thermometer: () => Promise<typeof __icons_thermometer>;
|
|
'thumbs-down': () => Promise<typeof __icons_thumbs_down>;
|
|
'thumbs-up': () => Promise<typeof __icons_thumbs_up>;
|
|
'ticket-check': () => Promise<typeof __icons_ticket_check>;
|
|
'ticket-minus': () => Promise<typeof __icons_ticket_minus>;
|
|
'ticket-percent': () => Promise<typeof __icons_ticket_percent>;
|
|
'ticket-plus': () => Promise<typeof __icons_ticket_plus>;
|
|
'ticket-slash': () => Promise<typeof __icons_ticket_slash>;
|
|
'ticket-x': () => Promise<typeof __icons_ticket_x>;
|
|
ticket: () => Promise<typeof __icons_ticket>;
|
|
'tickets-plane': () => Promise<typeof __icons_tickets_plane>;
|
|
tickets: () => Promise<typeof __icons_tickets>;
|
|
'timer-off': () => Promise<typeof __icons_timer_off>;
|
|
'timer-reset': () => Promise<typeof __icons_timer_reset>;
|
|
timer: () => Promise<typeof __icons_timer>;
|
|
'toggle-left': () => Promise<typeof __icons_toggle_left>;
|
|
'toggle-right': () => Promise<typeof __icons_toggle_right>;
|
|
toilet: () => Promise<typeof __icons_toilet>;
|
|
tornado: () => Promise<typeof __icons_tornado>;
|
|
torus: () => Promise<typeof __icons_torus>;
|
|
'touchpad-off': () => Promise<typeof __icons_touchpad_off>;
|
|
touchpad: () => Promise<typeof __icons_touchpad>;
|
|
'tower-control': () => Promise<typeof __icons_tower_control>;
|
|
'toy-brick': () => Promise<typeof __icons_toy_brick>;
|
|
tractor: () => Promise<typeof __icons_tractor>;
|
|
'traffic-cone': () => Promise<typeof __icons_traffic_cone>;
|
|
'train-front-tunnel': () => Promise<typeof __icons_train_front_tunnel>;
|
|
'train-front': () => Promise<typeof __icons_train_front>;
|
|
'train-track': () => Promise<typeof __icons_train_track>;
|
|
'tram-front': () => Promise<typeof __icons_tram_front>;
|
|
train: () => Promise<typeof __icons_tram_front>;
|
|
transgender: () => Promise<typeof __icons_transgender>;
|
|
'trash-2': () => Promise<typeof __icons_trash_2>;
|
|
trash: () => Promise<typeof __icons_trash>;
|
|
'tree-deciduous': () => Promise<typeof __icons_tree_deciduous>;
|
|
'tree-palm': () => Promise<typeof __icons_tree_palm>;
|
|
palmtree: () => Promise<typeof __icons_tree_palm>;
|
|
'tree-pine': () => Promise<typeof __icons_tree_pine>;
|
|
trees: () => Promise<typeof __icons_trees>;
|
|
trello: () => Promise<typeof __icons_trello>;
|
|
'trending-down': () => Promise<typeof __icons_trending_down>;
|
|
'trending-up-down': () => Promise<typeof __icons_trending_up_down>;
|
|
'trending-up': () => Promise<typeof __icons_trending_up>;
|
|
'triangle-alert': () => Promise<typeof __icons_triangle_alert>;
|
|
'alert-triangle': () => Promise<typeof __icons_triangle_alert>;
|
|
'triangle-dashed': () => Promise<typeof __icons_triangle_dashed>;
|
|
'triangle-right': () => Promise<typeof __icons_triangle_right>;
|
|
triangle: () => Promise<typeof __icons_triangle>;
|
|
trophy: () => Promise<typeof __icons_trophy>;
|
|
truck: () => Promise<typeof __icons_truck>;
|
|
turtle: () => Promise<typeof __icons_turtle>;
|
|
'tv-minimal-play': () => Promise<typeof __icons_tv_minimal_play>;
|
|
'tv-minimal': () => Promise<typeof __icons_tv_minimal>;
|
|
'tv-2': () => Promise<typeof __icons_tv_minimal>;
|
|
tv: () => Promise<typeof __icons_tv>;
|
|
twitch: () => Promise<typeof __icons_twitch>;
|
|
twitter: () => Promise<typeof __icons_twitter>;
|
|
'type-outline': () => Promise<typeof __icons_type_outline>;
|
|
type: () => Promise<typeof __icons_type>;
|
|
'umbrella-off': () => Promise<typeof __icons_umbrella_off>;
|
|
umbrella: () => Promise<typeof __icons_umbrella>;
|
|
underline: () => Promise<typeof __icons_underline>;
|
|
'undo-2': () => Promise<typeof __icons_undo_2>;
|
|
'undo-dot': () => Promise<typeof __icons_undo_dot>;
|
|
undo: () => Promise<typeof __icons_undo>;
|
|
'unfold-horizontal': () => Promise<typeof __icons_unfold_horizontal>;
|
|
'unfold-vertical': () => Promise<typeof __icons_unfold_vertical>;
|
|
ungroup: () => Promise<typeof __icons_ungroup>;
|
|
university: () => Promise<typeof __icons_university>;
|
|
'school-2': () => Promise<typeof __icons_university>;
|
|
'unlink-2': () => Promise<typeof __icons_unlink_2>;
|
|
unlink: () => Promise<typeof __icons_unlink>;
|
|
unplug: () => Promise<typeof __icons_unplug>;
|
|
upload: () => Promise<typeof __icons_upload>;
|
|
usb: () => Promise<typeof __icons_usb>;
|
|
'user-check': () => Promise<typeof __icons_user_check>;
|
|
'user-cog': () => Promise<typeof __icons_user_cog>;
|
|
'user-minus': () => Promise<typeof __icons_user_minus>;
|
|
'user-pen': () => Promise<typeof __icons_user_pen>;
|
|
'user-plus': () => Promise<typeof __icons_user_plus>;
|
|
'user-round-check': () => Promise<typeof __icons_user_round_check>;
|
|
'user-check-2': () => Promise<typeof __icons_user_round_check>;
|
|
'user-round-cog': () => Promise<typeof __icons_user_round_cog>;
|
|
'user-cog-2': () => Promise<typeof __icons_user_round_cog>;
|
|
'user-round-minus': () => Promise<typeof __icons_user_round_minus>;
|
|
'user-minus-2': () => Promise<typeof __icons_user_round_minus>;
|
|
'user-round-pen': () => Promise<typeof __icons_user_round_pen>;
|
|
'user-round-plus': () => Promise<typeof __icons_user_round_plus>;
|
|
'user-plus-2': () => Promise<typeof __icons_user_round_plus>;
|
|
'user-round-search': () => Promise<typeof __icons_user_round_search>;
|
|
'user-round-x': () => Promise<typeof __icons_user_round_x>;
|
|
'user-x-2': () => Promise<typeof __icons_user_round_x>;
|
|
'user-round': () => Promise<typeof __icons_user_round>;
|
|
'user-2': () => Promise<typeof __icons_user_round>;
|
|
'user-search': () => Promise<typeof __icons_user_search>;
|
|
'user-x': () => Promise<typeof __icons_user_x>;
|
|
user: () => Promise<typeof __icons_user>;
|
|
'users-round': () => Promise<typeof __icons_users_round>;
|
|
'users-2': () => Promise<typeof __icons_users_round>;
|
|
users: () => Promise<typeof __icons_users>;
|
|
'utensils-crossed': () => Promise<typeof __icons_utensils_crossed>;
|
|
'fork-knife-crossed': () => Promise<typeof __icons_utensils_crossed>;
|
|
utensils: () => Promise<typeof __icons_utensils>;
|
|
'fork-knife': () => Promise<typeof __icons_utensils>;
|
|
'utility-pole': () => Promise<typeof __icons_utility_pole>;
|
|
variable: () => Promise<typeof __icons_variable>;
|
|
vault: () => Promise<typeof __icons_vault>;
|
|
vegan: () => Promise<typeof __icons_vegan>;
|
|
'venetian-mask': () => Promise<typeof __icons_venetian_mask>;
|
|
'venus-and-mars': () => Promise<typeof __icons_venus_and_mars>;
|
|
venus: () => Promise<typeof __icons_venus>;
|
|
'vibrate-off': () => Promise<typeof __icons_vibrate_off>;
|
|
vibrate: () => Promise<typeof __icons_vibrate>;
|
|
'video-off': () => Promise<typeof __icons_video_off>;
|
|
video: () => Promise<typeof __icons_video>;
|
|
videotape: () => Promise<typeof __icons_videotape>;
|
|
view: () => Promise<typeof __icons_view>;
|
|
voicemail: () => Promise<typeof __icons_voicemail>;
|
|
volleyball: () => Promise<typeof __icons_volleyball>;
|
|
'volume-1': () => Promise<typeof __icons_volume_1>;
|
|
'volume-2': () => Promise<typeof __icons_volume_2>;
|
|
'volume-off': () => Promise<typeof __icons_volume_off>;
|
|
'volume-x': () => Promise<typeof __icons_volume_x>;
|
|
volume: () => Promise<typeof __icons_volume>;
|
|
vote: () => Promise<typeof __icons_vote>;
|
|
'wallet-cards': () => Promise<typeof __icons_wallet_cards>;
|
|
'wallet-minimal': () => Promise<typeof __icons_wallet_minimal>;
|
|
'wallet-2': () => Promise<typeof __icons_wallet_minimal>;
|
|
wallet: () => Promise<typeof __icons_wallet>;
|
|
wallpaper: () => Promise<typeof __icons_wallpaper>;
|
|
'wand-sparkles': () => Promise<typeof __icons_wand_sparkles>;
|
|
'wand-2': () => Promise<typeof __icons_wand_sparkles>;
|
|
wand: () => Promise<typeof __icons_wand>;
|
|
warehouse: () => Promise<typeof __icons_warehouse>;
|
|
'washing-machine': () => Promise<typeof __icons_washing_machine>;
|
|
watch: () => Promise<typeof __icons_watch>;
|
|
'waves-ladder': () => Promise<typeof __icons_waves_ladder>;
|
|
waves: () => Promise<typeof __icons_waves>;
|
|
waypoints: () => Promise<typeof __icons_waypoints>;
|
|
webcam: () => Promise<typeof __icons_webcam>;
|
|
'webhook-off': () => Promise<typeof __icons_webhook_off>;
|
|
webhook: () => Promise<typeof __icons_webhook>;
|
|
weight: () => Promise<typeof __icons_weight>;
|
|
'wheat-off': () => Promise<typeof __icons_wheat_off>;
|
|
wheat: () => Promise<typeof __icons_wheat>;
|
|
'whole-word': () => Promise<typeof __icons_whole_word>;
|
|
'wifi-high': () => Promise<typeof __icons_wifi_high>;
|
|
'wifi-low': () => Promise<typeof __icons_wifi_low>;
|
|
'wifi-off': () => Promise<typeof __icons_wifi_off>;
|
|
'wifi-zero': () => Promise<typeof __icons_wifi_zero>;
|
|
wifi: () => Promise<typeof __icons_wifi>;
|
|
'wind-arrow-down': () => Promise<typeof __icons_wind_arrow_down>;
|
|
wind: () => Promise<typeof __icons_wind>;
|
|
'wine-off': () => Promise<typeof __icons_wine_off>;
|
|
wine: () => Promise<typeof __icons_wine>;
|
|
workflow: () => Promise<typeof __icons_workflow>;
|
|
worm: () => Promise<typeof __icons_worm>;
|
|
'wrap-text': () => Promise<typeof __icons_wrap_text>;
|
|
wrench: () => Promise<typeof __icons_wrench>;
|
|
x: () => Promise<typeof __icons_x>;
|
|
youtube: () => Promise<typeof __icons_youtube>;
|
|
'zap-off': () => Promise<typeof __icons_zap_off>;
|
|
zap: () => Promise<typeof __icons_zap>;
|
|
'zoom-in': () => Promise<typeof __icons_zoom_in>;
|
|
'zoom-out': () => Promise<typeof __icons_zoom_out>;
|
|
};
|
|
|
|
type DynamicIconModule = {
|
|
default: LucideIcon;
|
|
__iconNode: IconNode;
|
|
};
|
|
type IconName = keyof typeof dynamicIconImports;
|
|
declare const iconNames: ("circle" | "target" | "type" | "filter" | "radius" | "scale" | "x" | "key" | "replace" | "search" | "slice" | "split" | "repeat" | "anchor" | "bold" | "link" | "code" | "map" | "menu" | "option" | "section" | "table" | "video" | "square" | "image" | "text" | "view" | "tag" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "baseline" | "terminal" | "copy" | "move" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-clock-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-1-0" | "arrow-down-a-z" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "arrow-down-z-a" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-1-0" | "arrow-up-a-z" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "badge-dollar-sign" | "badge-euro" | "badge-help" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-x" | "badge" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizontal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blend" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "box" | "boxes" | "braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "calendar" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "car-front" | "car-taxi-front" | "car" | "caravan" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "chart-bar-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "chart-candlestick" | "chart-column-big" | "chart-column-decreasing" | "chart-column-increasing" | "chart-column-stacked" | "chart-column" | "chart-gantt" | "chart-line" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "chart-no-axes-column" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "chart-pie" | "chart-scatter" | "chart-spline" | "check-check" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "circle-arrow-down" | "circle-arrow-left" | "circle-arrow-out-down-left" | "circle-arrow-out-down-right" | "circle-arrow-out-up-left" | "circle-arrow-out-up-right" | "circle-arrow-right" | "circle-arrow-up" | "circle-check-big" | "circle-check" | "circle-chevron-down" | "circle-chevron-left" | "circle-chevron-right" | "circle-chevron-up" | "circle-dashed" | "circle-divide" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "circle-help" | "circle-minus" | "circle-off" | "circle-parking-off" | "circle-parking" | "circle-pause" | "circle-percent" | "circle-play" | "circle-plus" | "circle-power" | "circle-slash-2" | "circle-slash" | "circle-small" | "circle-stop" | "circle-user-round" | "circle-user" | "circle-x" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-pen" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock" | "cloud-alert" | "cloud-cog" | "cloud-download" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3" | "columns-4" | "combine" | "command" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact" | "container" | "contrast" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "cross" | "crosshair" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "delete" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "diamond-plus" | "diamond" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed" | "door-open" | "dot" | "download" | "drafting-compass" | "drama" | "dribbble" | "drill" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "ellipsis" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "expand" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-chart-column" | "file-chart-line" | "file-chart-pie" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-pen" | "file-plus-2" | "file-plus" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-2" | "file-video" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "file" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "focus" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "frame" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "ghost" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "grab" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2x2-plus" | "grid-2x2-x" | "grid-2x2" | "grid-3x3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hammer" | "hand-coins" | "hand-heart" | "hand-helping" | "hand-metal" | "hand-platter" | "hand" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-off" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-cone" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "italic" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "keyboard" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "lock-keyhole" | "lock-open" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "mouse" | "move-3d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "octagon-minus" | "octagon-pause" | "octagon-x" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush" | "palette" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "panel-left-dashed" | "panel-left-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "pause" | "paw-print" | "pc-case" | "pen-line" | "pen-off" | "pen-tool" | "pen" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "percent" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "play" | "plug-2" | "plug-zap" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "pointer" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "power" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "ratio" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt" | "rectangle-ellipsis" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rotate-3d" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "rows-4" | "rss" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "scroll" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-to-back" | "send" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "sheet" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question" | "shield-user" | "shield-x" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shrimp" | "shrink" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "sofa" | "soup" | "space" | "spade" | "sparkle" | "sparkles" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spray-can" | "sprout" | "square-activity" | "square-arrow-down-left" | "square-arrow-down-right" | "square-arrow-down" | "square-arrow-left" | "square-arrow-out-down-left" | "square-arrow-out-down-right" | "square-arrow-out-up-left" | "square-arrow-out-up-right" | "square-arrow-right" | "square-arrow-up-left" | "square-arrow-up-right" | "square-arrow-up" | "square-asterisk" | "square-bottom-dashed-scissors" | "square-chart-gantt" | "square-check-big" | "square-check" | "square-chevron-down" | "square-chevron-left" | "square-chevron-right" | "square-chevron-up" | "square-code" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "square-dashed-mouse-pointer" | "square-dashed" | "square-divide" | "square-dot" | "square-equal" | "square-function" | "square-kanban" | "square-library" | "square-m" | "square-menu" | "square-minus" | "square-mouse-pointer" | "square-parking-off" | "square-parking" | "square-pen" | "square-percent" | "square-pi" | "square-pilcrow" | "square-play" | "square-plus" | "square-power" | "square-radical" | "square-round-corner" | "square-scissors" | "square-sigma" | "square-slash" | "square-split-horizontal" | "square-split-vertical" | "square-square" | "square-stack" | "square-terminal" | "square-user-round" | "square-user" | "square-x" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "star" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "triangle-dashed" | "triangle-right" | "triangle" | "trophy" | "truck" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "underline" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-round-cog" | "user-round-minus" | "user-round-pen" | "user-round-plus" | "user-round-search" | "user-round-x" | "user-round" | "user-search" | "user-x" | "user" | "users-round" | "users" | "utensils-crossed" | "utensils" | "utility-pole" | "variable" | "vault" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "vibrate" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet" | "wallpaper" | "wand-sparkles" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "weight" | "wheat-off" | "wheat" | "whole-word" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap" | "zoom-in" | "zoom-out" | "alarm-check" | "alarm-minus" | "alarm-plus" | "arrow-down-01" | "arrow-down-10" | "arrow-down-az" | "sort-desc" | "arrow-down-za" | "arrow-up-01" | "arrow-up-10" | "arrow-up-az" | "sort-asc" | "arrow-up-za" | "axis-3-d" | "verified" | "between-horizonal-end" | "between-horizonal-start" | "book-template" | "curly-braces" | "subtitles" | "area-chart" | "bar-chart-horizontal-big" | "bar-chart-horizontal" | "candlestick-chart" | "bar-chart-big" | "bar-chart-4" | "bar-chart-3" | "line-chart" | "bar-chart" | "bar-chart-2" | "gantt-chart" | "pie-chart" | "scatter-chart" | "alert-circle" | "arrow-down-circle" | "arrow-left-circle" | "arrow-down-left-from-circle" | "arrow-down-right-from-circle" | "arrow-up-left-from-circle" | "arrow-up-right-from-circle" | "arrow-right-circle" | "arrow-up-circle" | "check-circle" | "check-circle-2" | "chevron-down-circle" | "chevron-left-circle" | "chevron-right-circle" | "chevron-up-circle" | "divide-circle" | "gauge-circle" | "help-circle" | "minus-circle" | "parking-circle-off" | "parking-circle" | "pause-circle" | "percent-circle" | "play-circle" | "plus-circle" | "power-circle" | "circle-slashed" | "stop-circle" | "user-circle-2" | "user-circle" | "x-circle" | "clipboard-signature" | "clipboard-edit" | "download-cloud" | "upload-cloud" | "code-2" | "columns" | "panels-left-right" | "contact-2" | "percent-diamond" | "globe-2" | "more-vertical" | "more-horizontal" | "file-axis-3-d" | "file-bar-chart" | "file-bar-chart-2" | "file-line-chart" | "file-pie-chart" | "file-cog-2" | "file-signature" | "file-edit" | "folder-cog-2" | "folder-edit" | "filter-x" | "git-commit" | "grid-2-x-2-check" | "grid-2-x-2-plus" | "grid-2-x-2-x" | "grid-2-x-2" | "grid-3-x-3" | "helping-hand" | "home" | "ice-cream-2" | "ice-cream" | "outdent" | "indent" | "laptop-2" | "layers-3" | "loader-2" | "unlock-keyhole" | "unlock" | "mic-2" | "move-3-d" | "alert-octagon" | "pause-octagon" | "x-octagon" | "paintbrush-2" | "panel-bottom-inactive" | "sidebar-close" | "panel-left-inactive" | "sidebar-open" | "sidebar" | "panel-right-inactive" | "panel-top-inactive" | "layout" | "edit-3" | "edit-2" | "plug-zap-2" | "form-input" | "rotate-3-d" | "rows" | "panels-top-bottom" | "scale-3-d" | "send-horizonal" | "shield-close" | "sliders" | "stars" | "activity-square" | "arrow-down-left-square" | "arrow-down-right-square" | "arrow-down-square" | "arrow-left-square" | "arrow-down-left-from-square" | "arrow-down-right-from-square" | "arrow-up-left-from-square" | "arrow-up-right-from-square" | "arrow-right-square" | "arrow-up-left-square" | "arrow-up-right-square" | "arrow-up-square" | "asterisk-square" | "scissors-square-dashed-bottom" | "gantt-chart-square" | "square-gantt-chart" | "check-square" | "check-square-2" | "chevron-down-square" | "chevron-left-square" | "chevron-right-square" | "chevron-up-square" | "code-square" | "kanban-square-dashed" | "mouse-pointer-square-dashed" | "box-select" | "divide-square" | "dot-square" | "equal-square" | "function-square" | "kanban-square" | "library-square" | "m-square" | "menu-square" | "minus-square" | "inspect" | "parking-square-off" | "parking-square" | "pen-box" | "edit" | "pen-square" | "percent-square" | "pi-square" | "pilcrow-square" | "play-square" | "plus-square" | "power-square" | "scissors-square" | "sigma-square" | "slash-square" | "split-square-horizontal" | "split-square-vertical" | "terminal-square" | "user-square-2" | "user-square" | "x-square" | "test-tube-2" | "text-selection" | "train" | "palmtree" | "alert-triangle" | "tv-2" | "school-2" | "user-check-2" | "user-cog-2" | "user-minus-2" | "user-plus-2" | "user-x-2" | "user-2" | "users-2" | "fork-knife-crossed" | "fork-knife" | "wallet-2" | "wand-2")[];
|
|
interface DynamicIconComponentProps extends LucideProps {
|
|
name: IconName;
|
|
fallback?: () => JSX.Element | null;
|
|
}
|
|
/**
|
|
* Dynamic 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 DynamicIcon: react.ForwardRefExoticComponent<Omit<DynamicIconComponentProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
|
|
export { DynamicIcon, type DynamicIconModule, type IconName, dynamicIconImports, iconNames };
|