timeline-calendar-react
Version:
A timeline calendar component for React, built with TypeScript and Vite.
15 lines (14 loc) • 456 B
TypeScript
import { default as React, CSSProperties, JSX } from 'react';
type FlexBoxProps = {
size?: number;
pxSize?: string;
padding?: number;
type?: "flex" | "box";
direction?: "column" | "row";
style?: CSSProperties;
className?: string;
dataTestid?: string;
children?: JSX.Element | JSX.Element[];
};
export declare const FlexBox: React.ForwardRefExoticComponent<FlexBoxProps & React.RefAttributes<HTMLDivElement>>;
export {};