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
20 lines (19 loc) • 632 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;
visibleLinks?: boolean;
sidebarTrigger?: React.ReactNode;
transparent?: Boolean;
sideBar?: number;
width?: string;
}
export default function AppBar({ fixedTop, funcss, padding, fixedBottom, justify, children, left, center, right, sideBar, width, visibleLinks, sidebarTrigger, transparent }: NavbarProps): any;
export {};