mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-03 04:30:06 +08:00
a307a7acf7
* remove unnecessary computed props for classNames * rollback autocomplete optimization for possible css style order issue * update snapshots * remove more unnecessary computed props at Input
31 lines
747 B
TypeScript
31 lines
747 B
TypeScript
import React from 'react';
|
|
import classNames from 'classnames';
|
|
import splitObject from '../_util/splitObject';
|
|
|
|
export type ButtonSize = 'small' | 'large'
|
|
|
|
export interface ButtonGroupProps {
|
|
size?: ButtonSize;
|
|
style?: React.CSSProperties;
|
|
className?: string;
|
|
prefixCls?: string;
|
|
}
|
|
|
|
export default function ButtonGroup(props: ButtonGroupProps) {
|
|
const [{ prefixCls = 'ant-btn-group', size, className }, others] =
|
|
splitObject(props, ['prefixCls', 'size', 'className']);
|
|
|
|
// large => lg
|
|
// small => sm
|
|
const sizeCls = ({
|
|
large: 'lg',
|
|
small: 'sm',
|
|
})[size] || '';
|
|
|
|
const classes = classNames(prefixCls, {
|
|
[`${prefixCls}-${sizeCls}`]: sizeCls,
|
|
}, className);
|
|
|
|
return <div {...others} className={classes} />;
|
|
}
|