wass-rct-ui
Version:
A lightweight and customizable WASS Rct UI component library for modern web applications.
16 lines (15 loc) • 442 B
TypeScript
import * as React from "react";
import { BGColorVariant } from "../types";
export interface SidebarProps {
isOpen: boolean;
backgroundColor?: BGColorVariant;
logo?: string;
logoHeight?: number;
logoWidth?: number;
logoAlt?: string;
onToggle: (state: boolean) => void;
menuChildren: React.ReactNode;
contentChildren: React.ReactNode;
}
declare const Sidebar: React.FC<SidebarProps>;
export default Sidebar;