import { DetailedHTMLProps, HTMLAttributes } from "react"; import { twMerge } from "tailwind-merge"; /** * # General Section * @className twui-section */ export default function Section({ ...props }: DetailedHTMLProps, HTMLElement>) { return (
{props.children}
); }