Sleeve UI improvements.

This commit is contained in:
Olivier Gagnon
2021-03-16 05:42:12 -04:00
parent 29ea1281e0
commit c9fe8d9b65
12 changed files with 295 additions and 150 deletions
+8
View File
@@ -0,0 +1,8 @@
import * as React from "react";
export function DialogBox(content: HTMLElement): React.ReactElement {
return (<div className="dialog-box-content text">
<span className="dialog-box-close-button ">&times;</span>
{content}
</div>);
}