// frontend/components/dashboard/MiniRow.tsx import type { CSSProperties } from "react"; import { Icon } from "@/components/Icon"; import type { IconName } from "@/components/icons/paths"; import type { Tone } from "@/lib/types"; export function MiniRow({ tone, icon, text, sub, }: { tone: Tone; icon: string; text: string; sub: string; }) { return (