10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
|
|
const Premium = () => {
|
||
|
|
return (
|
||
|
|
<div className="premium w-24 h-8 bg-[#E20000] rounded-five text-center text-white py-1 px-3 right-2 top-2 absolute z-10">
|
||
|
|
Premium
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default Premium;
|