import * as React from "react"; export interface IIconButtonLineComponentProps { icon: string; onClick: () => void; tooltip: string; active?: boolean; } export class IconButtonLineComponent extends React.Component { constructor(props: IIconButtonLineComponentProps) { super(props); } render() { return (
this.props.onClick()} /> ); } }