@sb1/ffe-buttons-react
Version:
React implementation of ffe-buttons
11 lines (10 loc) • 426 B
TypeScript
import React from 'react';
export interface ButtonGroupProps extends React.ComponentProps<'div'> {
/** Applies the thin modifier to remove margins */
thin?: boolean;
/** Applies the inline modifier to make all child buttons inline */
inline?: boolean;
/** Label for the group of buttons for users with screen reader*/
ariaLabel?: string;
}
export declare const ButtonGroup: React.FC<ButtonGroupProps>;