import type React from "react"
import { IoBarChart, IoPeople, IoCart, IoTrendingUp, IoTrendingDown, IoCash } from "react-icons/io5"
import { Card, CardContent, CardFooter, CardHeader, CardTitle } from "@/components/ui/card"
import { cn } from "@/lib/utils"
interface StatCardProps {
title: string
value: string
description?: string
icon?: React.ReactNode
trend?: {
value: string
positive: boolean
}
className?: string
}
function StatCard({ title, value, description, icon, trend, className }: StatCardProps) {
return (
{description}