module Start.Model exposing (Flags, Model, Msg, Tab) import FeatherIcons type alias Flags = () type alias Model = () type alias Msg = () type alias Tab = { name : String , color : String , icon : FeatherIcons.Icon , link : String }