extension Icon {
enum AudioPlayer {
struct Playlist: ContentIcon {
static let id = "icon-playlist"
static let attributes = "viewBox='0 0 28 20'"
static let content =
"""
"""
}
struct Close: ContentIcon {
static let id = "icon-close"
static let attributes = "viewBox='0 0 18 18'"
static let content =
"""
"""
}
struct Pause: ContentIcon {
static let id = "icon-pause"
static let attributes = "viewBox='0 0 85 85'"
static let content =
"""
"""
}
struct Play: ContentIcon {
static let id = "icon-play"
static let attributes = "viewBox='0 0 85 85'"
static let content =
"""
"""
}
struct Previous: ContentIcon {
static let id = "icon-previous"
static let attributes = "viewBox='0 0 53 53'"
static let content =
"""
"""
}
struct Next: ContentIcon {
static let id = "icon-next"
static let attributes = "viewBox='0 0 53 53'"
static let content =
"""
"""
}
}
}