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
14 lines (13 loc) • 471 B
TypeScript
import * as React from "react";
type SubmenuProps = {
children: React.ReactNode;
title?: string;
icon?: React.ReactNode;
borderRadius?: string;
textFontSize?: string;
disabled?: boolean;
ClassName?: string;
openClassName?: string;
};
export declare function AMSubmenu({ title, children, icon, textFontSize, disabled, borderRadius, ClassName, openClassName }: SubmenuProps): import("react/jsx-runtime").JSX.Element;
export {};