# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class IceSkating < 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: 'M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z' ) s.path(d: 'M3 19h17a1 1 0 0 0 1 -1') s.path(d: 'M9 15v4') s.path(d: 'M15 15v4') end end end end end end # rubocop:enable Layout/LineLength