remove unused comp

This commit is contained in:
Wildan Nursahidan
2025-05-17 15:04:58 +07:00
parent ba2963ae41
commit 53e97c574c
5 changed files with 0 additions and 23 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

BIN
app/.DS_Store vendored Normal file

Binary file not shown.

BIN
components/.DS_Store vendored Normal file

Binary file not shown.

View File

@@ -1,23 +0,0 @@
import { Button } from "@/components/ui/button";
import { ChevronLeft, ChevronRight } from "lucide-react";
type Props = {
isOpen: boolean;
onToggle: () => void;
};
export function SidebarToggle({ isOpen, onToggle }: Props) {
return (
<div className="absolute left-0 top-4 z-20">
<Button
variant="ghost"
size="icon"
onClick={onToggle}
className="rounded-full border shadow bg-background"
aria-label="Toggle Sidebar"
>
{isOpen ? <ChevronLeft size={18} /> : <ChevronRight size={18} />}
</Button>
</div>
);
}

BIN
contents/.DS_Store vendored Normal file

Binary file not shown.