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