import { DetailedHTMLProps, HTMLAttributes } from "react"; import { twMerge } from "tailwind-merge"; /** * # Flexbox Column * @className twui-center */ export default function Center({ ...props }: DetailedHTMLProps, HTMLDivElement>) { return (
{props.children}
); }