13 lines
222 B
Go
13 lines
222 B
Go
package components
|
|
|
|
type FormInput struct {
|
|
ID string
|
|
Label string
|
|
Type string
|
|
Placeholder string
|
|
Value string
|
|
Hint string
|
|
Error string
|
|
IsDisabled bool
|
|
IsRequired bool
|
|
}
|