mediahub-fe/app/[locale]/(protected)/components/badge/rounded-badge.tsx

14 lines
402 B
TypeScript
Raw Normal View History

2024-11-26 03:09:48 +00:00
import { Badge } from "@/components/ui/badge";
const RoundedBadge = () => {
return (
<div className="flex flex-wrap gap-5">
<Badge rounded="sm">Default</Badge>
<Badge color="primary" rounded="md" >Primary</Badge>
<Badge color="secondary" rounded="lg">Secondary</Badge>
<Badge color="success" rounded="full">Success</Badge>
</div>
);
};
export default RoundedBadge;