frontend/app/components/settings/profile.tsx
2025-08-19 16:58:12 +02:00

14 lines
No EOL
364 B
TypeScript

import { Trash } from "lucide-react";
import { Button } from "../ui/button";
import { clearCache } from "~/lib/utils";
export default function Profile() {
return (
<div>
<Button variant="destructive" className="w-full text-white" onClick={clearCache}>
<Trash className="mr-2 h-4 w-4" />
Vider le cache
</Button>
</div>
);
}