w3robotics commited on
Commit
e4ab3ba
·
verified ·
1 Parent(s): 25f92b8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +30 -0
app.py CHANGED
@@ -36,6 +36,36 @@ with stylable_container(
36
  """,
37
  ):
38
  st.button("Delete File")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
 
40
 
41
 
 
36
  """,
37
  ):
38
  st.button("Delete File")
39
+
40
+ with stylable_container(
41
+ key="view_button",
42
+ css_styles=r"""
43
+ button p:before {
44
+ font-family: 'Font Awesome 5 Free';
45
+ content: '\f07c';
46
+ display: inline-block;
47
+ padding-right: 3px;
48
+ vertical-align: middle;
49
+ font-weight: 900;
50
+ }
51
+ """,
52
+ ):
53
+ st.button("View Folder")
54
+
55
+ with stylable_container(
56
+ key="recycle_button",
57
+ css_styles=r"""
58
+ button p:before {
59
+ font-family: 'Font Awesome 5 Free';
60
+ content: '\f1b8';
61
+ display: inline-block;
62
+ padding-right: 3px;
63
+ vertical-align: middle;
64
+ font-weight: 900;
65
+ }
66
+ """,
67
+ ):
68
+ st.button("Recycle App")
69
 
70
 
71