@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
14 lines (13 loc) • 412 B
TypeScript
import React from "react";
export interface TimelinePinProps extends React.HTMLAttributes<HTMLButtonElement> {
/**
* Date position for the pin.
*/
date: Date;
/**
* Content in Pin Popover.
*/
children?: React.ReactNode;
}
export declare const PinInternal: React.ForwardRefExoticComponent<TimelinePinProps & React.RefAttributes<HTMLButtonElement>>;
export default PinInternal;