Sha256: fbaa4f6b57312b716e539dd3d92f2a0627d757f58f0eed131030aa9aed560e36
Contents?: true
Size: 640 Bytes
Versions: 14
Compression:
Stored size: 640 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class GalleryHorizontalEnd < 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 7v10') s.path(d: 'M6 5v14') s.rect(width: '12', height: '18', x: '10', y: '3', rx: '2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems