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, children,
theme = 'light', theme = 'light',
type = 'submit', type = 'submit',
disabled = false,
onClick = undefined onClick = undefined
}) => ( }) => (
<StyledSolidButton <StyledSolidButton
type={type} type={type}
className={`btn btn-${theme}`} className={`btn btn-${theme}`}
onClick={onClick} onClick={onClick}
disabled={disabled}
> >
{children} {children}
</StyledSolidButton> </StyledSolidButton>