# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class EggCracked < 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: 'M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z' ) s.path(d: 'M12 3l-1.5 5l3.5 2.5l-2 3.5') end end end end end end # rubocop:enable Layout/LineLength