UNPKG

@mui/material

Version:

React components that implement Google's Material Design.

22 lines (18 loc) 453 B
import * as React from 'react'; import { Breakpoint } from '@mui/system'; export interface HiddenJsProps { width?: Breakpoint; lgDown?: boolean; lgUp?: boolean; mdDown?: boolean; mdUp?: boolean; only?: Breakpoint | Breakpoint[]; smDown?: boolean; smUp?: boolean; xlDown?: boolean; xlUp?: boolean; xsDown?: boolean; xsUp?: boolean; } declare const HiddenJs: React.JSXElementConstructor<HiddenJsProps>; export default HiddenJs;