UNPKG

@mui/joy

Version:

Joy UI is an open-source React component library that implements MUI's own design principles. It's comprehensive and can be used in production out of the box.

22 lines (21 loc) 714 B
import { Interpolation } from '@mui/system'; import { Theme } from '../styles'; import { ButtonOwnerState, ButtonTypeMap, ExtendButton } from './ButtonProps'; export declare const getButtonStyles: ({ theme, ownerState, }: { theme: Theme; ownerState: Partial<Omit<ButtonOwnerState, 'slots' | 'slotProps'>>; }) => Interpolation<any>; /** * * Demos: * * - [Button](https://mui.com/joy-ui/react-button/) * - [Button Group](https://mui.com/joy-ui/react-button-group/) * - [Toggle Button Group](https://mui.com/joy-ui/react-toggle-button-group/) * * API: * * - [Button API](https://mui.com/joy-ui/api/button/) */ declare const Button: ExtendButton<ButtonTypeMap<{}, "button">>; export default Button;