turkmentv_front/components/Premium.tsx

10 lines
219 B
TypeScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
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;