Sha256: 98cc2b8b1feedebef3c8b8de3ac55d9f8a73ad5a36af9660215630f215f7042f
Contents?: true
Size: 644 Bytes
Versions: 26
Compression:
Stored size: 644 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Move3d < 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: 'M5 3v16h16') s.path(d: 'm5 19 6-6') s.path(d: 'm2 6 3-3 3 3') s.path(d: 'm18 16 3 3-3 3') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems