A vibe coded tangled fork which supports pijul.
at master 17 lines 439 B view raw
1import { Row } from "./layout"; 2import { TYPOGRAPHY } from "./constants"; 3import type { LucideIcon } from "../../icons/lucide"; 4 5interface StatItemProps { 6 Icon: LucideIcon; 7 value: string | number; 8} 9 10export function StatItem({ Icon, value }: StatItemProps) { 11 return ( 12 <Row style={{ gap: 16 }}> 13 <Icon size={36} color="#404040" /> 14 <span style={{ ...TYPOGRAPHY.body, color: "#404040" }}>{value}</span> 15 </Row> 16 ); 17}