Sha256: 0576c9942367bf33bdb429fcd996086f4458030782d982568220f21a62917081
Contents?: true
Size: 790 Bytes
Versions: 26
Compression:
Stored size: 790 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class GripVertical < Base def view_template 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.circle(cx: '9', cy: '12', r: '1') s.circle(cx: '9', cy: '5', r: '1') s.circle(cx: '9', cy: '19', r: '1') s.circle(cx: '15', cy: '12', r: '1') s.circle(cx: '15', cy: '5', r: '1') s.circle(cx: '15', cy: '19', r: '1') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems