mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 06:27:11 +01:00
fix label
This commit is contained in:
committed by
Thomas Ruoff
parent
b1b57abb52
commit
20c2a70206
@@ -10,7 +10,7 @@ export default function Input(props: InputProps) {
|
||||
const { label, required, type = 'text', ...rest } = props
|
||||
|
||||
return (
|
||||
<InputWrapper label="label" required={required}>
|
||||
<InputWrapper label={label} required={required}>
|
||||
<input type={type} required={required} className="input-text" {...rest} />
|
||||
</InputWrapper>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user