Update #10

Merged
sead merged 3 commits from dcio_refactor into main 2025-12-13 18:28:26 +00:00
Showing only changes of commit 85d7f4c61c - Show all commits

View File

@@ -63,12 +63,14 @@ export const SolidButton = ({
children,
theme = 'light',
type = 'submit',
disabled = false,
onClick = undefined
}) => (
<StyledSolidButton
type={type}
className={`btn btn-${theme}`}
onClick={onClick}
disabled={disabled}
>
{children}
</StyledSolidButton>