Sha256: c45865da94c89deb96ce2e490c9fa3c6951d429b3f336f01e35430c6ff0ea11c
Contents?: true
Size: 632 Bytes
Versions: 14
Compression:
Stored size: 632 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Presentation < 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: 'M2 3h20') s.path(d: 'M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3') s.path(d: 'm7 21 5-5 5 5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems