mirror of
				https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
				synced 2025-11-03 19:44:27 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			474 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			474 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import gradio as gr
 | 
						|
 | 
						|
 | 
						|
class ToolButton(gr.Button, gr.components.FormComponent):
 | 
						|
    """Small button with single emoji as text, fits inside gradio forms"""
 | 
						|
 | 
						|
    def __init__(self, **kwargs):
 | 
						|
        super().__init__(variant="tool", **kwargs)
 | 
						|
 | 
						|
    def get_block_name(self):
 | 
						|
        return "button"
 | 
						|
 | 
						|
 | 
						|
class FormRow(gr.Row, gr.components.FormComponent):
 | 
						|
    """Same as gr.Row but fits inside gradio forms"""
 | 
						|
 | 
						|
    def get_block_name(self):
 | 
						|
        return "row"
 |