ant-design/components/rate/index.tsx

33 lines
763 B
TypeScript
Raw Normal View History

import * as React from 'react';
import PropTypes from 'prop-types';
2016-03-30 13:20:03 +08:00
import RcRate from 'rc-rate';
import Icon from '../icon';
2016-03-30 13:20:03 +08:00
2016-08-10 09:46:56 +08:00
export interface RateProps {
prefixCls?: string;
count?: number;
value?: number;
defaultValue?: number;
allowHalf?: boolean;
disabled?: boolean;
onChange?: (value: number) => any;
onHoverChange?: (value: number) => any;
2017-03-06 14:23:38 +08:00
character?: React.ReactNode;
className?: string;
style?: React.CSSProperties;
2016-08-10 09:46:56 +08:00
}
export default class Rate extends React.Component<RateProps, any> {
2016-03-30 13:20:03 +08:00
static propTypes = {
prefixCls: PropTypes.string,
2017-03-06 14:23:38 +08:00
character: PropTypes.node,
2016-03-30 13:20:03 +08:00
};
2016-03-31 14:43:38 +08:00
static defaultProps = {
2016-03-30 13:20:03 +08:00
prefixCls: 'ant-rate',
2017-03-06 14:23:38 +08:00
character: <Icon type="star" />,
2016-03-30 13:20:03 +08:00
};
render() {
return <RcRate {...this.props} />;
}
}