@primer/react
Version:
An implementation of GitHub's Primer Design System using React
12 lines • 521 B
TypeScript
import { type PropsWithChildren } from 'react';
import { type SxProp } from '../sx';
import type { ForwardRefComponent as PolymorphicForwardRefComponent } from '../utils/polymorphic';
export type ButtonGroupProps = {
/** The role of the group */
role?: string;
/** className passed in for styling */
className?: string;
} & PropsWithChildren & SxProp;
declare const ButtonGroup: PolymorphicForwardRefComponent<"div", ButtonGroupProps>;
export default ButtonGroup;
//# sourceMappingURL=ButtonGroup.d.ts.map