UNPKG

timeline-calendar-react

Version:

A timeline calendar component for React, built with TypeScript and Vite.

16 lines (15 loc) 460 B
import { Theme } from '../../types'; type ButtonProps = { theme: Theme; size?: "small" | "medium" | "large"; variant?: "contained" | "text" | "outlined"; disabled?: boolean; sx?: React.CSSProperties; onClick?: () => void; className?: string; accentColor: string; dataTestid?: string; children?: React.ReactNode; }; export declare const Button: (props: ButtonProps) => import("react/jsx-runtime").JSX.Element; export {};