Sha256: 3c04a42b9cb247f260c06507604f164752778d2d6ef03e1686a4df6841046998
Contents?: true
Size: 663 Bytes
Versions: 26
Compression:
Stored size: 663 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class SeparatorVertical < 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.line(x1: '12', x2: '12', y1: '3', y2: '21') s.polyline(points: '8 8 4 12 8 16') s.polyline(points: '16 16 20 12 16 8') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems