import React from "react"; export interface IButtonProps { icon?: JSX.Element; text?: String; } export class TopBarButton implements IButtonProps { }