forked from goffee/core
20 lines
337 B
Go
20 lines
337 B
Go
package components
|
|
|
|
type FormInput struct {
|
|
ID string
|
|
Label string
|
|
Type string
|
|
Placeholder string
|
|
Value string
|
|
Hint string
|
|
Error string
|
|
IsDisabled bool
|
|
Autocomplete bool
|
|
IsRequired bool
|
|
CustomAtt []CustomAtt
|
|
}
|
|
|
|
type CustomAtt struct {
|
|
AttName string
|
|
AttValue string
|
|
}
|