import { RiBankCardLine, RiBarChart2Line, RiShieldCheckLine, } from "@remixicon/react"; import { Logo } from "@/shared/components/logo"; import { DotPattern } from "@/shared/components/ui/dot-pattern"; import { AuthSidebarInvoicesMock } from "./auth-sidebar-invoices-mock"; function FeatureItem({ icon: Icon, text, }: { icon: React.ComponentType<{ className?: string }>; text: string; }) { return (
{text}
); } function AuthSidebar() { return (
); } export default AuthSidebar;