index.tsx
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import React from 'react';
import { Button, Space, ButtonProps } from 'antd';
import type { SpaceProps } from 'antd';
interface OptionType {
value: any;
label:
| string
| number
| boolean
| React.ReactElement
| React.ReactFragment
| React.ReactPortal
| null
| undefined;
}
export interface ButtonRadioProps extends SpaceProps {
className?: string;
prefixCls?: string;
buttonProps?: ButtonProps;
onChange?: (value: any) => void;
value?: any;
options?: OptionType[];
}
const ButtonRadio: React.FC<ButtonRadioProps> = ({
options = [],
buttonProps = {},
value,
onChange,
...restProps
}) => {
return (
<Space {...restProps}>
{options.map((option, i) => {
const type = option.value === value ? 'primary' : 'default';
return (
<Button
key={i}
{...buttonProps}
type={type}
onClick={() => {
onChange && onChange(option.value);
}}
>
{option.label}
</Button>
);
})}
</Space>
);
};
export default ButtonRadio;