import _ from "lodash";
import { DetailedHTMLProps, HTMLAttributes } from "react";
import { twMerge } from "tailwind-merge";
/**
* # Flexbox Column
* @className twui-stack
*/
export default function Stack({
...props
}: DetailedHTMLProps, HTMLDivElement> & {
center?: boolean;
}) {
const finalProps = _.omit(props, "center");
return (
{props.children}
);
}