Sha256: fdbf089d7b22201558c7b952bc133cb797799d4bc2d2cdfbc9727983879b8e96
Contents?: true
Size: 747 Bytes
Versions: 10
Compression:
Stored size: 747 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Golf < 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: 'M12 18v-15l7 4l-7 4') s.path( d: 'M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33' ) end end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems