import React, {type ReactNode} from "react"; import clsx from "clsx"; type HorizontalInputGroupLayoutProps = React.HTMLAttributes & { /** Content to render inside the group */ children: ReactNode; }; /** * A layout for horizontally aligning inputs and buttons - designed for pages with several input items in a row * @param children Children of the layout, i.e., inputs * @param className Optional additional styles * @param props all other props by html div that might be needed * @constructor */ export default function HorizontalInputGroupLayout({children, className, ...props}: HorizontalInputGroupLayoutProps) { return (
{children}
); }