# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class ChefHat < 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: 'M12 3c1.918 0 3.52 1.35 3.91 3.151a4 4 0 0 1 2.09 7.723l0 7.126h-12v-7.126a4 4 0 1 1 2.092 -7.723a4 4 0 0 1 3.908 -3.151z' ) s.path(d: 'M6.161 17.009l11.839 -.009') end end end end end end # rubocop:enable Layout/LineLength