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