UNPKG

react-schedule-view

Version:

A zero-dependency, fully customizable component for displaying schedules in a daily or week format

10 lines (9 loc) 294 B
import { CSSProperties, FC } from "react"; export interface HorizontalLinesProps { borderStyle: CSSProperties["borderStyle"]; spacing: number; numLines: number; offset?: number; } declare const HorizontalLines: FC<HorizontalLinesProps>; export default HorizontalLines;