Sha256: 6f990e55fead8913d2dc1de01b5cbcd9df32640f379b1f60f0644b9bc97cf2d2
Contents?: true
Size: 687 Bytes
Versions: 26
Compression:
Stored size: 687 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class BetweenVerticalEnd < 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.rect(width: '7', height: '13', x: '3', y: '3', rx: '1') s.path(d: 'm9 22 3-3 3 3') s.rect(width: '7', height: '13', x: '14', y: '3', rx: '1') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems