Sha256: 3ba4f81e592f4195e77bd4e51dd0d45d3c7cd5720d9ffc05ecf4bd3acd4bfc6b
Contents?: true
Size: 754 Bytes
Versions: 12
Compression:
Stored size: 754 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Golf < 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 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
12 entries across 12 versions & 2 rubygems