@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
15 lines (14 loc) • 362 B
TypeScript
import type { TimelinePeriodProps } from ".";
export interface PeriodProps {
start: Date;
end: Date;
status: Exclude<TimelinePeriodProps["status"], undefined>;
cropped: string;
direction: string;
width: number;
left: number;
icon?: React.ReactNode;
children?: React.ReactNode;
statusLabel?: string;
restProps?: any;
}