Sha256: 618fcd387bc015f7ac58058e1685a587c07d778e62a6452fc1ff612802573e21
Contents?: true
Size: 559 Bytes
Versions: 18
Compression:
Stored size: 559 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Axis3d < 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: 'M4 4v16h16') s.path(d: 'm4 20 7-7') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems