14 lines
385 B
Plaintext
14 lines
385 B
Plaintext
|
|
<ThemeProvider theme={customTheme}>
|
||
|
|
<Button variant="dashed" sx={{ m: 1 }}>
|
||
|
|
Dashed
|
||
|
|
</Button>
|
||
|
|
<Button variant="dashed" color="secondary" sx={{ m: 1 }}>
|
||
|
|
Secondary
|
||
|
|
</Button>
|
||
|
|
<Button variant="dashed" size="large" sx={{ m: 1 }}>
|
||
|
|
Large
|
||
|
|
</Button>
|
||
|
|
<Button variant="dashed" color="secondary" size="large" sx={{ m: 1 }}>
|
||
|
|
Secondary large
|
||
|
|
</Button>
|
||
|
|
</ThemeProvider>
|