Skip to content

Commit

Permalink
Fix #5283: InputText size TS fix
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Nov 10, 2023
1 parent 4801fb2 commit 891644b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/passthrough/tailwind/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ const Tailwind = {
{
'text-lg px-4 py-4': props.size == 'large',
'text-xs px-2 py-2': props.size == 'small',
'p-3 text-base': !props.size || typeof props.size === 'number',
'p-3 text-base': !props.size || typeof props.size === 'number'

This comment has been minimized.

Copy link
@Dalorzo

Dalorzo Nov 10, 2023

Contributor

nice!

}
)
})
Expand Down

0 comments on commit 891644b

Please sign in to comment.