UNPKG

alpha-version-dce-check-in-ui

Version:

UI for taking attendance and checking people in.

21 lines (20 loc) 462 B
/** * A radio selection button * @author Gabe Abrams */ import React from 'react'; import Variant from '../types/Variant'; type Props = { text: string; onSelected: () => void; ariaLabel: string; title?: string; selected?: boolean; id?: string; noMarginOnRight?: boolean; selectedVariant?: Variant; unselectedVariant?: Variant; small?: boolean; }; declare const RadioButton: React.FC<Props>; export default RadioButton;