index.tsx
1.3 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
import React from 'react';
import { Button, Space, ButtonProps } from 'antd';
import type { SpaceProps } from 'antd';
export interface ButtonRadioProps extends SpaceProps {
className?: string;
prefixCls?: string;
buttonProps?: ButtonProps;
onChange?: (value: any) => void;
value?: any;
[props: string]: any;
}
const ButtonRadio: React.FC<ButtonRadioProps> = (props) => {
const { options = [], buttonProps = {}, value, onChange } = props;
return (
<Space {...props}>
{options.map(
(
option: {
value: any;
label:
| string
| number
| boolean
| React.ReactElement<any, string | React.JSXElementConstructor<any>>
| React.ReactFragment
| React.ReactPortal
| null
| undefined;
},
i: React.Key | null | undefined,
) => {
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;