import React from "react"; import { Building } from "lucide-react"; type CerobongCardProps = { title: string; value: number; fromColor: string; toColor: string; }; const CerobongCard: React.FC = ({ title, value, fromColor, toColor, }) => { return (
{value}
{title}
); }; export default CerobongCard;