@unicity/design-system
Version:
A comprehensive React component library built on Material-UI with advanced theming capabilities including neumorphism design support
18 lines • 510 B
TypeScript
import React from 'react';
import { ButtonProps as MuiButtonProps } from '@mui/material';
export interface ButtonProps extends Omit<MuiButtonProps, 'size'> {
/**
* The size of the button
*/
size?: 'small' | 'medium' | 'large';
/**
* Whether the button should take full width
*/
fullWidth?: boolean;
/**
* Whether the button is in loading state
*/
loading?: boolean;
}
export declare const Button: React.FC<ButtonProps>;
//# sourceMappingURL=Button.d.ts.map