# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class Milk < 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: 'M8 6h8v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1v2z') s.path( d: 'M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v8.071a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l1.094 -1.759' ) s.path(d: 'M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M10 10h4') end end end end end end # rubocop:enable Layout/LineLength