extension Icon { enum Statistics { struct Time: ContentIcon { static let id = "icon-clock" static let attributes = "viewBox='0 0 16 16'" static let content = """ """ } /// [Source](https://icons.getbootstrap.com/icons/stopwatch/) struct Stopwatch: ContentIcon { static let id = "icon-stopwatch" static let attributes = "viewBox='0 0 16 16'" static let content = """ """ } struct ElevationUp: ContentIcon { static let id = "icon-elevation-up" static let attributes = "viewBox='0 0 16 16'" static let content = """ """ } struct ElevationDown: ContentIcon { static let id = "icon-elevation-down" static let attributes = "viewBox='0 0 16 16'" static let content = """ """ } struct Distance: ContentIcon { static let id = "icon-distance" static let attributes = "viewBox='0 0 16 16'" static let content = """ """ } struct Energy: ContentIcon { static let id = "icon-energy" static let attributes = "viewBox='0 0 16 16'" static let content = """ """ } /// [Source](https://icons.getbootstrap.com/icons/heart-pulse/) struct HeartPulse: ContentIcon { static let id = "icon-pulse" static let attributes = "viewBox='0 0 16 16'" static let content = """ """ } /// [Source](https://icons.getbootstrap.com/icons/speedometer/) struct Speedometer: ContentIcon { static let id = "icon-speed" static let attributes = "viewBox='0 0 16 16'" static let content = """ """ } } }