Spaces:
Running
Running
| import React from "react"; | |
| import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; | |
| import { Clock } from "lucide-react"; | |
| export function RecentSection() { | |
| return ( | |
| <Card> | |
| <CardHeader className="pb-3"> | |
| <CardTitle className="text-sm font-medium flex items-center gap-2"> | |
| <Clock className="h-4 w-4" /> | |
| Recent | |
| </CardTitle> | |
| </CardHeader> | |
| <CardContent> | |
| <p className="text-sm text-muted-foreground text-center py-4"> | |
| No recent items | |
| </p> | |
| </CardContent> | |
| </Card> | |
| ); | |
| } | |