import React from 'react'; import { AntdLucideIconProps } from './types'; /** * 适配 antd 组件的 lucide 图标组件 * 解决 antd 组件 icon 属性的尺寸/对齐/样式问题 */ declare const SLucideIcon: ({ name, size, strokeWidth, color, style, className, ...props }: AntdLucideIconProps) => React.JSX.Element | null; export default SLucideIcon;