Sha256: 440a2334c1e3d4c01d7de015e4e9b661680053c663a003609cc3a5b63c5f32d2
Contents?: true
Size: 576 Bytes
Versions: 14
Compression:
Stored size: 576 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ChevronsLeftRight < 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.path(d: 'm9 7-5 5 5 5') s.path(d: 'm15 7 5 5-5 5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems