UNPKG

thank-you-tweet-button-003

Version:

Easy-to-use tweet button for saying thank you to @oluwatobiss.

9 lines (8 loc) 234 B
export function generateStarIcons(rating) { const megaStars = `⭐⭐⭐⭐⭐ x ${Math.round(rating / 5)}`; let stars = ""; for (let i = 0; i < rating; i++) { stars += "⭐"; } return rating > 10 ? megaStars : stars; }