added new folder and ran tests
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
from __future__ import annotations
|
||||
|
||||
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,
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user