mango-web/components/PercentPill.tsx

10 lines
232 B
TypeScript
Raw Normal View History

2021-07-12 04:47:55 -07:00
const PercentPill = () => {
return (
2021-07-15 23:34:29 -07:00
<div className="inline-flex h-6 mt-1 items-center px-3 py-2 text-white text-sm uppercase font-bold bg-mango-red rounded-full">
<p>-3%</p>
</div>
)
}
2021-07-12 04:47:55 -07:00
export default PercentPill