import * as React from "react"; import { isToday } from "date-fns"; // Import types import { DateTime } from "../../helpers/types"; // Import styles import { LineStyled } from "../../styles"; // Import components import { useLine } from "./useLine"; interface LineProps { height: number; startDate: DateTime; endDate: DateTime; dayWidth: number; hourWidth: number; sidebarWidth: number; } const { Box } = LineStyled; export function Line({ height, startDate, endDate, dayWidth, hourWidth, sidebarWidth, }: LineProps) { const { positionX } = useLine({ startDate, endDate, dayWidth, hourWidth, sidebarWidth, }); const date = new Date(startDate); if (!isToday(date)) return null; return ; }