Badge
Filled badges with colored backgrounds. Use them to highlight labels, tags, or status indicators in a compact pill shape.
Badge
Badge
Badge
Badge
Badge
Badge
Badge
Badge
RegularBadge.jsx
export default function RegularBadge() { return ( <div className="flex flex-row flex-wrap gap-4 justify-center"> <div className="flex justify-center items-center"> <span className="bg-[#ffebee] py-[2px] px-2 rounded-2xl text-[#d32f2f] text-sm">Badge</span> </div> <div className="flex justify-center items-center"> <span className="bg-[#fce4ec] py-[2px] px-2 rounded-2xl text-[#c2185b] text-sm">Badge</span> </div> <div className="flex justify-center items-center"> <span className="bg-[#f3e5f5] py-[2px] px-2 rounded-2xl text-[#7b1fa2] text-sm">Badge</span> </div> <div className="flex justify-center items-center"> <span className="bg-[#e3f2fd] py-[2px] px-2 rounded-2xl text-[#1976d2] text-sm">Badge</span> </div> <div className="flex justify-center items-center"> <span className="bg-[#e8f5e9] py-[2px] px-2 rounded-2xl text-[#388e3c] text-sm">Badge</span> </div> <div className="flex justify-center items-center"> <span className="bg-[#fff3e0] py-[2px] px-2 rounded-2xl text-[#f57c00] text-sm">Badge</span> </div> <div className="flex justify-center items-center"> <span className="bg-[#efebe9] py-[2px] px-2 rounded-2xl text-[#5d4037] text-sm">Badge</span> </div> <div className="flex justify-center items-center"> <span className="bg-[#eeeeee] py-[2px] px-2 rounded-2xl text-[#616161] text-sm">Badge</span> </div> </div> ) }