UNPKG

@elacity-js/uikit

Version:

React / Material UI Design kit for Elacity project

9 lines (8 loc) 298 B
/// <reference types="react" /> import type { ButtonProps } from '@mui/material/Button'; interface AnimateButtonProps extends ButtonProps { label: string; altLabel?: string; } export default function AnimateButton({ label, altLabel, ...props }: AnimateButtonProps): JSX.Element; export {};