pouncejs
Version:
A collection of UI components from Panther labs
11 lines (10 loc) • 360 B
TypeScript
import React from 'react';
interface DateWrapperProps {
isExpanded: boolean;
targetRef: React.RefObject<HTMLElement>;
alignment?: 'left' | 'right' | 'match-width';
}
declare const DateWrapper: React.ForwardRefExoticComponent<DateWrapperProps & {
children?: React.ReactNode;
} & React.RefAttributes<HTMLDivElement>>;
export default DateWrapper;