Sha256: e8c68deaf2723013b5300a7113d1eab8d4e65c11f49f05a3a5faf644262d0e86
Contents?: true
Size: 779 Bytes
Versions: 18
Compression:
Stored size: 779 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ImageUp < 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: 'M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21' ) s.path(d: 'm14 19.5 3-3 3 3') s.path(d: 'M17 22v-5.5') s.circle(cx: '9', cy: '9', r: '2') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems