@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
8 lines (7 loc) • 413 B
TypeScript
import React from "react";
import type { PeriodProps } from "./types";
interface TimelineNonClickablePeriodProps extends PeriodProps {
periodRef?: React.ForwardedRef<HTMLDivElement>;
}
declare const NonClickablePeriod: ({ start, end, status, cropped, direction, left, width, icon, statusLabel, restProps, periodRef, }: TimelineNonClickablePeriodProps) => React.JSX.Element;
export default NonClickablePeriod;