18 lines
390 B
Plaintext
18 lines
390 B
Plaintext
---
|
|
import ComponentLayout from "../layouts/ComponentLayout.astro";
|
|
import Button from "../components/Button.astro";
|
|
---
|
|
|
|
<ComponentLayout>
|
|
<div class="wr:p-4">
|
|
<Button
|
|
variant="solid"
|
|
icon="lets-icons:check-ring-duotone-line"
|
|
color="primary"
|
|
size="md"
|
|
>
|
|
Submit
|
|
</Button>
|
|
</div>
|
|
</ComponentLayout>
|