Skip to content

Commit

Permalink
adds a few missing ones
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleshike committed May 24, 2024
1 parent 62fcac9 commit fd12547
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/Input/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ const Input = React.forwardRef<HTMLInputElement, InputProps>((props, ref) => {
id,
leadingIcon,
name,
placeholder,
placeholder = '',
trailingIcon,
trailingIconLabel,
trailingIconLabel = '',
trailingIconOnClick,
trailingIconOnClickSubmit,
trailingText,
Expand Down
4 changes: 2 additions & 2 deletions src/LoadingOverlay/LoadingOverlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ type LoadingOverlayProps = {
};

const LoadingOverlay = ({
contentCenterOverflow,
contentTop,
contentCenterOverflow = false,
contentTop = false,
dataTestid = 'LoadingOverlay',
header,
text,
Expand Down
2 changes: 1 addition & 1 deletion src/RadioButton/RadioButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type RadioButtonProps = {
const RadioButton = React.forwardRef<HTMLInputElement, RadioButtonProps>(({
checked,
className,
disabled,
disabled = false,
id,
name = '',
value,
Expand Down

0 comments on commit fd12547

Please sign in to comment.