UNPKG

react-custom-calendarss

Version:

A calendar that can be customized to your liking 🧨

10 lines (9 loc) • 390 B
import { default as React } from 'react'; type Variant = "primary" | "secondary" | "disabled"; type Props = { children: React.ReactNode; className?: string; variant?: Variant; } & React.ButtonHTMLAttributes<HTMLButtonElement>; export default function ActiveButton({ children, disabled, variant, className, ...props }: Props): import("react/jsx-runtime").JSX.Element; export {};