mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
b34269a6b1
convert var to const fix bug fix bug fix for jshint fix import
29 lines
626 B
JavaScript
29 lines
626 B
JavaScript
import React from 'react';
|
|
import Tooltip from 'rc-tooltip';
|
|
|
|
export default React.createClass({
|
|
getDefaultProps() {
|
|
return {
|
|
placement: 'top'
|
|
};
|
|
},
|
|
render() {
|
|
var transitionName = ({
|
|
top: 'zoom-down',
|
|
bottom: 'zoom-up',
|
|
left: 'zoom-right',
|
|
right: 'zoom-left'
|
|
})[this.props.placement];
|
|
return (
|
|
<Tooltip placement={this.props.placement}
|
|
prefixCls="ant-tooltip"
|
|
delay={0.1}
|
|
trigger={this.props.trigger}
|
|
transitionName={transitionName}
|
|
overlay={this.props.title}>
|
|
{this.props.children}
|
|
</Tooltip>
|
|
);
|
|
}
|
|
});
|