# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class Baguette < 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: 'M5.628 11.283l5.644 -5.637c2.665 -2.663 5.924 -3.747 8.663 -1.205l.188 .181a2.987 2.987 0 0 1 0 4.228l-11.287 11.274a3 3 0 0 1 -4.089 .135l-.143 -.135c-2.728 -2.724 -1.704 -6.117 1.024 -8.841z' ) s.path(d: 'M9.5 7.5l1.5 3.5') s.path(d: 'M6.5 10.5l1.5 3.5') s.path(d: 'M12.5 4.5l1.5 3.5') end end end end end end # rubocop:enable Layout/LineLength