# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Lucide class Lectern < 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: 'M16 12h3a2 2 0 0 0 1.902-1.38l1.056-3.333A1 1 0 0 0 21 6H3a1 1 0 0 0-.958 1.287l1.056 3.334A2 2 0 0 0 5 12h3' ) s.path(d: 'M18 6V3a1 1 0 0 0-1-1h-3') s.rect(width: '8', height: '12', x: '8', y: '10', rx: '1') end end end end end end # rubocop:enable Layout/LineLength