Sha256: 0b7e52dc2a504d7eee2540cf99f0de86d51a2bd2af735d586d39e73a20d21cb7
Contents?: true
Size: 835 Bytes
Versions: 26
Compression:
Stored size: 835 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class View < 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.path(d: 'M21 17v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2') s.path(d: 'M21 7V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2') s.circle(cx: '12', cy: '12', r: '1') s.path( d: 'M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0' ) end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems