24 lines
639 B
TypeScript
Raw Normal View History

2024-02-21 02:01:35 +07:00
import FileListing from "./file-listing";
import { FaUserCircle } from "react-icons/fa";
2024-02-22 12:14:58 +00:00
import { Button } from "~/components/ui/button";
2024-02-21 02:01:35 +07:00
const Sidebar = () => {
return (
<aside className="flex flex-col items-stretch h-full">
<FileListing />
2024-02-22 20:59:20 +00:00
2024-02-21 02:01:35 +07:00
<div className="h-12 bg-[#1a1b26] pl-12">
<Button
variant="ghost"
className="h-12 w-full truncate flex justify-start text-left uppercase text-xs rounded-none"
>
<FaUserCircle className="mr-2 text-xl" />
<span className="truncate">Log in</span>
</Button>
</div>
</aside>
);
};
export default Sidebar;