Sha256: 715d2165c57b5961e7160919c4a31f69314a5b8237a6da6e2dc4310e18e467c2
Contents?: true
Size: 774 Bytes
Versions: 14
Compression:
Stored size: 774 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class GitCherryPick < 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: 'M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') s.path(d: 'M7 3v6') s.path(d: 'M7 15v6') s.path(d: 'M13 7h2.5l1.5 5l-1.5 5h-2.5') s.path(d: 'M17 12h3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems