component_image.go 238 B

12345678910111213141516
  1. package ultraviolet
  2. type ImageComponentModel struct {
  3. Path string
  4. Width int
  5. }
  6. type ImageComponentOptions struct {
  7. View View
  8. Model ImageComponentModel
  9. }
  10. type ImageComponent interface {
  11. SetPath(path string)
  12. SetWidth(width int)
  13. }