planby
Version:
<div align="center" style="margin-bottom: 10px"> <a href="https://www.npmjs.com/package/planby"> <img src="https://i.postimg.cc/J0XMPHNQ/planby-logo.png" alt="Planby logo" /> </a> </div>
13 lines (12 loc) • 395 B
TypeScript
/// <reference types="react" />
import { DateTime } from "../../helpers/types";
interface LineProps {
height: number;
startDate: DateTime;
endDate: DateTime;
dayWidth: number;
hourWidth: number;
sidebarWidth: number;
}
export declare function Line({ height, startDate, endDate, dayWidth, hourWidth, sidebarWidth, }: LineProps): JSX.Element | null;
export {};