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>
);