@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
10 lines (9 loc) • 408 B
TypeScript
import React from "react";
import { TimelineComponentTypes } from "../utils/types.internal";
import { type TimelinePinProps } from "./PinInternal";
export interface PinType extends React.ForwardRefExoticComponent<TimelinePinProps & React.RefAttributes<HTMLButtonElement>> {
componentType: TimelineComponentTypes;
}
export declare const Pin: PinType;
export default Pin;
export type { TimelinePinProps };