import * as React from 'react'; import {IconButton} from 'superdesk-ui-framework/react'; export interface IPanelTools { icon: string; title: string; onClick(): void; ariaValue: string; } interface IProps { children?: React.ReactNode; tools: Array; } export class PanelTools extends React.PureComponent { render() { return (
{this.props.tools.map((tool) => ( ))}
); } }