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
15 lines (14 loc) • 426 B
TypeScript
import { ReactNode } from 'react';
interface FunLoaderProps {
funcss?: string;
position?: "left" | "right";
glassy?: boolean;
open?: boolean;
header?: ReactNode;
content?: ReactNode;
close?: ReactNode;
footer?: ReactNode;
fixed?: boolean;
}
export default function SideBar({ funcss, position, glassy, header, open, content, close, footer, fixed, ...rest }: FunLoaderProps): any;
export {};