Files
react-test/docs/data/system/getting-started/usage/Why.js
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

43 lines
1014 B
JavaScript

import TrendingUpIcon from '@mui/icons-material/TrendingUp';
import Box from '@mui/system/Box';
export default function Why() {
return (
<Box
sx={{
p: 2,
minWidth: 300,
border: '1px solid',
borderColor: 'divider',
bgcolor: 'background.default',
borderRadius: 2,
}}
>
<Box sx={{ color: 'text.secondary' }}>Sessions</Box>
<Box
sx={{ color: 'text.primary', fontSize: '2.125rem', fontWeight: 'medium' }}
>
98.3 K
</Box>
<Box
component={TrendingUpIcon}
sx={{ color: 'success.dark', fontSize: '1rem', verticalAlign: 'sub' }}
/>
<Box
sx={{
display: 'inline',
fontSize: '0.875rem',
fontWeight: 'bold',
color: 'success.dark',
mx: 0.5,
}}
>
18.7%
</Box>
<Box sx={{ color: 'text.secondary', display: 'inline', fontSize: '0.875rem' }}>
vs. last week
</Box>
</Box>
);
}