import { Card, CardAction, CardContent, CardHeader, } from "@/styles/base-rhea/ui/card" import { Skeleton } from "@/styles/base-rhea/ui/skeleton" const rows = [0, 1, 2, 3] const miniBars = [40, 60, 80, 50] export function DividendIncome() { return (
{rows.map((row) => (
{miniBars.map((h, i) => ( ))}
))}
) }