12 lines
464 B
TypeScript
12 lines
464 B
TypeScript
/** DEMO PlanHeader 우측 90 Days 배지와 동일 */
|
|
export function PlanHeaderDaysBadge() {
|
|
return (
|
|
<div className="shrink-0">
|
|
<div className="w-32 h-32 rounded-full bg-gradient-to-r from-[#4F1DA1] to-[#021341] flex flex-col items-center justify-center shadow-lg">
|
|
<span className="text-4xl font-bold text-white leading-none">90</span>
|
|
<span className="text-sm text-purple-200 break-keep">Days</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|