Sha256: af263e546c012cccda2c4382552f8edcd2df35eb0d265f3b8f6dd6fc7fabb298
Contents?: true
Size: 666 Bytes
Versions: 14
Compression:
Stored size: 666 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class GitCommitHorizontal < Base def view_template 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.circle(cx: '12', cy: '12', r: '3') s.line(x1: '3', x2: '9', y1: '12', y2: '12') s.line(x1: '15', x2: '21', y1: '12', y2: '12') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems