1234567891011121314151617181920 |
- import React from 'react';
- import './index.less';
- import Button from '../Button';
- function Radio(props) {
- const { list, value } = props;
- return (
- <div className="radio">
- {list.map(item => {
- return (
- <Button theme={item.key === value ? 'theme' : 'default'} size="small" radius>
- {item.title}
- </Button>
- );
- })}
- </div>
- );
- }
- Radio.propTypes = {};
- export default Radio;
|