You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
629 B

'use strict';
10 years ago
var React = require('react');
var Tooltip = require('rc-tooltip');
module.exports = React.createClass({
getDefaultProps() {
10 years ago
return {
placement: 'top'
};
},
render() {
var transitionName = ({
top: 'zoom-down',
bottom: 'zoom-up',
left: 'zoom-right',
right: 'zoom-left'
})[this.props.placement];
return (
10 years ago
<Tooltip placement={this.props.placement}
prefixCls="ant-tooltip"
10 years ago
trigger={this.props.trigger}
transitionName={transitionName}
10 years ago
overlay={this.props.title}>
10 years ago
{this.props.children}
</Tooltip>
);
}
});