UNPKG

@mui/material

Version:

Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.

13 lines 479 B
import * as React from 'react'; interface RovingToggleButtonChildProps { ref?: React.Ref<HTMLElement> | undefined; tabIndex?: number | undefined; } interface RovingToggleButtonProps { children: React.ReactElement<RovingToggleButtonChildProps>; disabled?: boolean | undefined; selected?: boolean | undefined; value: unknown; } declare const _default: React.ForwardRefExoticComponent<RovingToggleButtonProps & React.RefAttributes<HTMLElement>>; export default _default;