2023-03-03 17:48:43 +01:00
|
|
|
import { Text, TextProps } from "@chakra-ui/layout";
|
|
|
|
import * as React from "react";
|
|
|
|
|
|
|
|
export const Copyright = props => (
|
|
|
|
<Text fontSize="sm" {...props}>
|
|
|
|
© {new Date().getFullYear()} Cath. All rights reserved.
|
|
|
|
</Text>
|
|
|
|
);
|