timeline-calendar-react
Version:
A timeline calendar component for React, built with TypeScript and Vite.
11 lines (10 loc) • 324 B
TypeScript
import { Theme, UserWithRangeType } from '../../types';
type SideBarProps = {
theme?: Theme;
userWithRange: UserWithRangeType[];
onToggle: () => void;
opened: boolean;
accentColor: string;
};
declare function Sidebar(props: SideBarProps): import("react/jsx-runtime").JSX.Element;
export default Sidebar;