smart-react-components
Version:
React UI library, wide variety of editable ready to use Styled and React components.
14 lines (13 loc) • 399 B
TypeScript
import React from "react";
import { SizeProps } from "../props/size-props";
import { JSXElementProps } from "../props";
export interface Props extends SizeProps {
children: JSX.Element[];
elementProps?: JSXElementProps;
type?: string;
fill?: boolean;
shape?: string;
fixedSize?: boolean;
}
declare const ButtonGroup: React.FC<Props>;
export default ButtonGroup;