UNPKG

@useloops/design-system

Version:

The official React based Loops design system

13 lines (10 loc) 447 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import { ButtonProps } from '@mui/material'; import { ButtonSizing } from './Button.variant-helpers.js'; interface ButtonBaseProps extends ButtonProps { loading?: boolean; sizing: ButtonSizing; } declare const ButtonBase: ({ children, loading, sizing, ...rest }: ButtonBaseProps) => react_jsx_runtime.JSX.Element; export { ButtonBase as default }; export type { ButtonBaseProps };