Files
how2ice 005cf56baf
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
init project
2025-12-12 14:26:25 +09:00

31 lines
607 B
JavaScript

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>
);
}