10 lines
315 B
TypeScript

import { cn } from "../../lib/utils"
type FooterProps = {
children?: React.ReactNode;
};
const Footer = (props: FooterProps) => {
return(<footer className={cn("text-center p-24 border-t-2 border-solid border-black border-opacity-50 min-h-36 text-eth")}>{props.children}</footer>);
}
export default Footer;