Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
31 lines
607 B
TypeScript
31 lines
607 B
TypeScript
import Box from '@mui/material/Box';
|
|
|
|
export default function Print() {
|
|
return (
|
|
<div style={{ width: '100%' }}>
|
|
<Box
|
|
sx={{
|
|
display: 'block',
|
|
displayPrint: 'none',
|
|
m: 1,
|
|
fontSize: '0.875rem',
|
|
fontWeight: '700',
|
|
}}
|
|
>
|
|
Screen Only (Hide on print only)
|
|
</Box>
|
|
<Box
|
|
sx={{
|
|
display: 'none',
|
|
displayPrint: 'block',
|
|
m: 1,
|
|
fontSize: '0.875rem',
|
|
fontWeight: '700',
|
|
}}
|
|
>
|
|
Print Only (Hide on screen only)
|
|
</Box>
|
|
</div>
|
|
);
|
|
}
|