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.
28 lines
608 B
28 lines
608 B
import React from 'react';
|
|
import Tooltip from 'rc-tooltip';
|
|
|
|
export default React.createClass({
|
|
getDefaultProps() {
|
|
return {
|
|
prefixCls: 'ant-tooltip',
|
|
placement: 'top',
|
|
mouseEnterDelay: 0.1,
|
|
mouseLeaveDelay: 0.1
|
|
};
|
|
},
|
|
render() {
|
|
let transitionName = ({
|
|
top: 'zoom-down',
|
|
bottom: 'zoom-up',
|
|
left: 'zoom-right',
|
|
right: 'zoom-left'
|
|
})[this.props.placement];
|
|
return (
|
|
<Tooltip transitionName={transitionName}
|
|
overlay={this.props.title}
|
|
{...this.props}>
|
|
{this.props.children}
|
|
</Tooltip>
|
|
);
|
|
}
|
|
});
|
|
|