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