Spaces:
Sleeping
Sleeping
File size: 459 Bytes
0f12e5c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import gradio as gr
from gradio_buttonplus import ButtonPlus
with gr.Blocks(theme=gr.themes.Ocean()) as demo:
gr.HTML("<h1><center>ButtonPlus Component Demo</center></h1>")
with gr.Row():
with gr.Column():
btn = ButtonPlus("⚙️", help="This button triggers an action.")
btn_2 = ButtonPlus("Another Test", help="This is a demo test")
if __name__ == "__main__":
demo.launch()
|