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
21 lines (20 loc) • 688 B
TypeScript
import * as React from 'react';
interface NavbarProps {
fixedTop?: boolean;
funcss?: string;
padding?: string;
fixedBottom?: boolean;
justify?: string;
children?: React.ReactNode;
left?: React.ReactNode;
center?: React.ReactNode;
right?: React.ReactNode;
sidebarTrigger?: React.ReactNode;
transparent?: boolean;
sideBar?: number;
hasSidebar?: boolean;
sidebarOpen?: boolean;
openSidebar?: () => void;
}
export default function AppBar({ fixedTop, funcss, padding, fixedBottom, justify, left, center, right, sideBar, sidebarTrigger, transparent, hasSidebar, openSidebar, sidebarOpen }: NavbarProps): React.JSX.Element;
export {};