package ultraviolet type ImageComponentModel struct { Path string Width int } type ImageComponentOptions struct { View View Model ImageComponentModel } type ImageComponent interface { SetPath(path string) SetWidth(width int) }