| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 | 
							- /* @flow */
 - 
 - import Tooltip from '@atlaskit/tooltip';
 - import React from 'react';
 - 
 - import { Icon } from '../../../base/icons';
 - 
 - import AbstractToolbarButton from '../AbstractToolbarButton';
 - import type { Props as AbstractToolbarButtonProps }
 -     from '../AbstractToolbarButton';
 - 
 - /**
 -  * The type of the React {@code Component} props of {@link ToolbarButton}.
 -  */
 - type Props = AbstractToolbarButtonProps & {
 - 
 -     /**
 -      * The text to display in the tooltip.
 -      */
 -     tooltip: string,
 - 
 -     /**
 -      * From which direction the tooltip should appear, relative to the
 -      * button.
 -      */
 -     tooltipPosition: string
 - };
 - 
 - /**
 -  * Represents a button in the toolbar.
 -  *
 -  * @extends AbstractToolbarButton
 -  */
 - class ToolbarButton extends AbstractToolbarButton<Props> {
 -     /**
 -      * Default values for {@code ToolbarButton} component's properties.
 -      *
 -      * @static
 -      */
 -     static defaultProps = {
 -         tooltipPosition: 'top'
 -     };
 - 
 -     /**
 -      * Renders the button of this {@code ToolbarButton}.
 -      *
 -      * @param {Object} children - The children, if any, to be rendered inside
 -      * the button. Presumably, contains the icon of this {@code ToolbarButton}.
 -      * @protected
 -      * @returns {ReactElement} The button of this {@code ToolbarButton}.
 -      */
 -     _renderButton(children) {
 -         return (
 -             <div
 -                 aria-label = { this.props.accessibilityLabel }
 -                 className = 'toolbox-button'
 -                 onClick = { this.props.onClick }>
 -                 { this.props.tooltip
 -                     ? <Tooltip
 -                         content = { this.props.tooltip }
 -                         position = { this.props.tooltipPosition }>
 -                         { children }
 -                     </Tooltip>
 -                     : children }
 -             </div>
 -         );
 -     }
 - 
 -     /**
 -      * Renders the icon of this {@code ToolbarButton}.
 -      *
 -      * @inheritdoc
 -      */
 -     _renderIcon() {
 -         return (
 -             <div className = { `toolbox-icon ${this.props.toggled ? 'toggled' : ''}` }>
 -                 <Icon src = { this.props.icon } />
 -             </div>
 -         );
 -     }
 - }
 - 
 - export default ToolbarButton;
 
 
  |