import { DetailedHTMLProps, FormHTMLAttributes } from "react"; import { twMerge } from "tailwind-merge"; /** * # Form Element * @className twui-form */ export default function Form({ ...props }: DetailedHTMLProps, HTMLFormElement>) { return (
{props.children}
); }