UNPKG

@mui/material

Version:

Quickly build beautiful React apps. MUI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.

22 lines (18 loc) 460 B
import * as React from 'react'; import { Breakpoint } from '@mui/system'; export interface HiddenJsProps { initialWidth?: 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;