koperasi/services/frontend/app/components/cards/bordered-card.tsx

14 lines
367 B
TypeScript
Raw Permalink Normal View History

2025-08-08 07:12:40 +00:00
type BorderedCardProps = {
title: string;
value: string | number;
};
export default function BorderedCard({ title, value }: BorderedCardProps) {
return (
<div className="rounded-md border border-gray-400 border-dashed p-3">
<h3 className="font-bold text-gray-500">{title}</h3>
<h4 className="font-medium text-lg">{value}</h4>
</div>
);
}