Sha256: 7796b4d7747bd06e24b3db220acf378f2e7340a0dbfd1c81f53f6fe181229db1
Contents?: true
Size: 688 Bytes
Versions: 26
Compression:
Stored size: 688 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Image < 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.rect(width: '18', height: '18', x: '3', y: '3', rx: '2', ry: '2') s.circle(cx: '9', cy: '9', r: '2') s.path(d: 'm21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems