33 lines
968 B
JavaScript
33 lines
968 B
JavaScript
/**
|
|
* Wishlist Icon (tablet with heart)
|
|
* @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 wishlistIcon({
|
|
size = 24,
|
|
color = "currentColor",
|
|
strokeWidth = 2,
|
|
} = {}) {
|
|
return `
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="${size}"
|
|
height="${size}"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="${color}"
|
|
stroke-width="${strokeWidth}"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
>
|
|
<rect x="5" y="2" width="14" height="20" rx="2" ry="2"/>
|
|
<path d="M12 18h.01"/>
|
|
<path d="M12 8l1.5 1.5L12 11l-1.5-1.5L12 8z" fill="${color}" stroke="none"/>
|
|
<path d="M12 6.5c-.5-.5-1.5-.5-2 0s-.5 1.5 0 2l2 2 2-2c.5-.5.5-1.5 0-2s-1.5-.5-2 0"/>
|
|
</svg>
|
|
`;
|
|
}
|