nyx-dashboard/components/Footer/Copyright.js

9 lines
234 B
JavaScript
Raw Normal View History

2022-01-08 22:38:17 +01:00
import { Text, TextProps } from "@chakra-ui/layout";
import * as React from "react";
2021-06-29 01:58:12 +02:00
2022-01-08 22:38:17 +01:00
export const Copyright = props => (
<Text fontSize="sm" {...props}>
&copy; {new Date().getFullYear()} Cath. All rights reserved.
</Text>
);