# 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