You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
453 B
TypeScript
22 lines
453 B
TypeScript
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;
|