@helpwave/hightide
Version:
helpwave's component and theming library
18 lines (15 loc) • 575 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { PropsWithChildren } from 'react';
type InputGroupProps = PropsWithChildren<{
title: string;
expanded?: boolean;
isExpandable?: boolean;
disabled?: boolean;
onChange?: (value: boolean) => void;
className?: string;
}>;
/**
* A Component for layouting inputs in an expandable group
*/
declare const InputGroup: ({ children, title, expanded, isExpandable, disabled, onChange, className, }: InputGroupProps) => react_jsx_runtime.JSX.Element;
export { InputGroup, type InputGroupProps };