23 lines
374 B
Python
23 lines
374 B
Python
import dash_mantine_components as dmc
|
|
|
|
from .labels import labels_element
|
|
|
|
next_button = dmc.Button(
|
|
"next".title(),
|
|
id="next-button",
|
|
n_clicks=0,
|
|
fullWidth=True,
|
|
color="lime",
|
|
radius="sm",
|
|
size="md",
|
|
style={
|
|
"height": "50px"
|
|
}
|
|
)
|
|
|
|
inputs_element = dmc.SimpleGrid(
|
|
children=[
|
|
labels_element,
|
|
next_button
|
|
]
|
|
) |