Sha256: 5817d628e34f25818a83248769abdc4e4f0c4e527dd05731860526d881434c25
Contents?: true
Size: 993 Bytes
Versions: 26
Compression:
Stored size: 993 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Lucide class Theater < 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: 'M2 10s3-3 3-8') s.path(d: 'M22 10s-3-3-3-8') s.path(d: 'M10 2c0 4.4-3.6 8-8 8') s.path(d: 'M14 2c0 4.4 3.6 8 8 8') s.path(d: 'M2 10s2 2 2 5') s.path(d: 'M22 10s-2 2-2 5') s.path(d: 'M8 15h8') s.path(d: 'M2 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1') s.path(d: 'M14 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
26 entries across 26 versions & 2 rubygems