# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class GlassCocktail < Base def filled raise NotImplementedError end def outline svg( **attrs, 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: 'M8 21h8') s.path(d: 'M12 15v6') s.path(d: 'M12 5m-7 0a7 2 0 1 0 14 0a7 2 0 1 0 -14 0') s.path( d: 'M5 5v.388c0 .432 .126 .853 .362 1.206l5 7.509c.633 .951 1.88 1.183 2.785 .517c.191 -.141 .358 -.316 .491 -.517l5 -7.509c.236 -.353 .362 -.774 .362 -1.206v-.388' ) end end end end end end # rubocop:enable Layout/LineLength