nextjs-tailwind-sidebar
Version:
Build beautiful and responsive sidebars in seconds! **Nextjs Tailwind Sidebar** is a lightweight and fully customizable sidebar component for React and Next.js projects. It comes with built-in support for **light/dark mode**, **RTL layouts**, and **easy s
11 lines (10 loc) • 357 B
TypeScript
interface ProfileProps {
userName?: string;
designation?: string;
userimg?: string;
isCollapse?: boolean;
onLogout?: () => void;
ClassName?: string;
}
export declare const AMProfile: ({ userName, designation, userimg, isCollapse, onLogout, ClassName, }: ProfileProps) => import("react/jsx-runtime").JSX.Element;
export {};