Sha256: f0b81e3d25c0cd6f8341a68bbaedaab3165e2fa6b00b09c54ae07598ccee2599
Contents?: true
Size: 877 Bytes
Versions: 12
Compression:
Stored size: 877 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class GitCompare < 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: 'M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M11 6h5a2 2 0 0 1 2 2v8') s.path(d: 'M14 9l-3 -3l3 -3') s.path(d: 'M13 18h-5a2 2 0 0 1 -2 -2v-8') s.path(d: 'M10 15l3 3l-3 3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems