UNPKG

funuicss

Version:

React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting b

26 lines (25 loc) 728 B
import React, { ReactNode } from 'react'; interface SideBarLink { uri: string; icon: React.ReactNode; text: string; section: string; } interface SideBarProps { funcss?: string; position?: 'left' | 'right'; open?: boolean; header?: ReactNode; content?: ReactNode; footer?: ReactNode; top?: number; sidebarWidth?: number; sidebarCss?: string; activeCss?: string; bodyCss?: string; links?: SideBarLink[]; children?: ReactNode; onClose?: () => void; } export default function SideBar({ funcss, position, open, header, content, footer, top, sidebarWidth, sidebarCss, activeCss, bodyCss, links, children, onClose, }: SideBarProps): React.JSX.Element; export {};