22 lines
608 B
TypeScript
22 lines
608 B
TypeScript
import { DetailedHTMLProps, HTMLAttributes } from "react";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export default function Footer({
|
|
...props
|
|
}: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>) {
|
|
return (
|
|
<header
|
|
{...props}
|
|
className={twMerge(
|
|
"flex flex-col items-center justify-center",
|
|
"px-4 sm:px-10 py-2",
|
|
"border-0 border-b border-slate-200 border-solid",
|
|
"twui-footer",
|
|
props.className
|
|
)}
|
|
>
|
|
{props.children}
|
|
</header>
|
|
);
|
|
}
|