/** * Plus Icon (Lucide) * @param {Object} props - Icon properties * @param {number} props.size - Icon size (default: 24) * @param {string} props.color - Icon color (default: currentColor) * @param {number} props.strokeWidth - Stroke width (default: 2) * @returns {string} SVG string */ export function plusIcon({ size = 24, color = "currentColor", strokeWidth = 2, } = {}) { return ` `; }