Files
react-test/docs/data/material/getting-started/templates/dashboard/internals/components/Copyright.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
549 B
JavaScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
import Link from '@mui/material/Link';
import Typography from '@mui/material/Typography';
export default function Copyright(props) {
return (
<Typography
variant="body2"
align="center"
{...props}
sx={[
{
color: 'text.secondary',
},
...(Array.isArray(props.sx) ? props.sx : [props.sx]),
]}
>
{'Copyright © '}
<Link color="inherit" href="https://mui.com/">
Sitemark
</Link>{' '}
{new Date().getFullYear()}
{'.'}
</Typography>
);
}