extension Icon { enum Statistics { struct Time: ContentIcon { static let id = "icon-clock" static let attributes = "viewBox='0 0 16 16' width='16' height='16'" static let content = """ """ } struct ElevationUp: ContentIcon { static let id = "icon-elevation-up" static let attributes = "width='16' height='16'" static let content = """ """ } struct ElevationDown: ContentIcon { static let id = "icon-elevation-down" static let attributes = "width='16' height='16'" static let content = """ """ } struct Distance: ContentIcon { static let id = "icon-distance" static let attributes = "width='16' height='16'" static let content = """ """ } struct Energy: ContentIcon { static let id = "icon-energy" static let attributes = "width='16' height='16'" static let content = """ """ } } }