# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class Volume < Base def filled raise NotImplementedError end def outline svg( class: classes, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'none', stroke: 'currentColor', stroke_width: '2', stroke_linecap: 'round', stroke_linejoin: 'round' ) do |s| s.path(d: 'M15 8a5 5 0 0 1 0 8') s.path(d: 'M17.7 5a9 9 0 0 1 0 14') s.path( d: 'M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5' ) end end end end end end # rubocop:enable Layout/LineLength