Initial commit
This commit is contained in:
28
src/components/shared/PricingBadge.tsx
Normal file
28
src/components/shared/PricingBadge.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
"use client";
|
||||
|
||||
import { memo } from "react";
|
||||
import { cls } from "@/lib/utils";
|
||||
import type { LucideIcon } from "lucide-react";
|
||||
|
||||
interface PricingBadgeProps {
|
||||
badge: string;
|
||||
badgeIcon?: LucideIcon;
|
||||
className?: string;
|
||||
}
|
||||
|
||||
const PricingBadge = memo(({
|
||||
badge,
|
||||
badgeIcon: BadgeIcon,
|
||||
className = "",
|
||||
}: PricingBadgeProps) => {
|
||||
return (
|
||||
<div className={cls("relative z-1 inline-flex items-center gap-2 px-4 py-2 w-fit card rounded-theme text-sm", className)}>
|
||||
{BadgeIcon && <BadgeIcon className="relative z-1 h-[1em] w-auto" />}
|
||||
<span>{badge}</span>
|
||||
</div>
|
||||
);
|
||||
});
|
||||
|
||||
PricingBadge.displayName = "PricingBadge";
|
||||
|
||||
export default PricingBadge;
|
||||
Reference in New Issue
Block a user