alpha-version-dce-check-in-ui
Version:
UI for taking attendance and checking people in.
15 lines (14 loc) • 347 B
TypeScript
/**
* Input group with a title and space for buttons
* @author Gabe Abrams
*/
import React from 'react';
type Props = {
label: string;
minLabelWidth?: string;
children: React.ReactNode;
className?: string;
wrapButtonsAndAddGaps?: boolean;
};
declare const ButtonInputGroup: React.FC<Props>;
export default ButtonInputGroup;