diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/topbar/TopBarButton.tsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/client/views/topbar/TopBarButton.tsx b/src/client/views/topbar/TopBarButton.tsx new file mode 100644 index 000000000..0d3d2a8d1 --- /dev/null +++ b/src/client/views/topbar/TopBarButton.tsx @@ -0,0 +1,10 @@ +import React from "react"; + +export interface IButtonProps { + icon?: JSX.Element; + text?: String; +} + +export class TopBarButton implements IButtonProps { + +} |