Sha256: 5a2d990943e8125c7c326b31f7cf7a84438e81fe0418a5a99a85f2229f18fe82
Contents?: true
Size: 581 Bytes
Versions: 26
Compression:
Stored size: 581 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ChevronsRight < 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.path(d: 'm6 17 5-5-5-5') s.path(d: 'm13 17 5-5-5-5') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems