Sha256: 0d3d899eab5faa0149d30b9cf19b5ee6957117fb6b3e005887ef126e591f43fe
Contents?: true
Size: 783 Bytes
Versions: 14
Compression:
Stored size: 783 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class GripVertical < 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: '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
14 entries across 14 versions & 2 rubygems