This commit is contained in:
@@ -14,8 +14,10 @@ import {
|
||||
Target,
|
||||
Copy,
|
||||
Check,
|
||||
Trophy,
|
||||
HeartCrack,
|
||||
} from 'lucide-react';
|
||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
|
||||
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
|
||||
import { Button } from '@/components/ui/button';
|
||||
import { Input } from '@/components/ui/input';
|
||||
import { Label } from '@/components/ui/label';
|
||||
@@ -150,9 +152,9 @@ export default function Dashboard() {
|
||||
const getHabitIcon = (type: string) => {
|
||||
switch (type) {
|
||||
case 'positive':
|
||||
return <TrendingUp className="h-5 w-5 text-emerald-500" />;
|
||||
return <Trophy className="h-5 w-5 text-emerald-500" />;
|
||||
case 'negative':
|
||||
return <TrendingDown className="h-5 w-5 text-red-500" />;
|
||||
return <HeartCrack className="h-5 w-5 text-red-500" />;
|
||||
default:
|
||||
return <Activity className="h-5 w-5 text-zinc-500" />;
|
||||
}
|
||||
|
Reference in New Issue
Block a user