nyx-dashboard/components/Footer/Copyright.js
2021-06-29 07:58:12 +08:00

8 lines
No EOL
240 B
JavaScript

import { Text, TextProps } from '@chakra-ui/layout'
import * as React from 'react'
export const Copyright = (props) => (
<Text fontSize="sm" {...props}>
&copy; {new Date().getFullYear()} Cath. All rights reserved.
</Text>
)