Sha256: 57b830e8114933e6c88b36963301bff2935dc52b6edd4557cf773b825cf121df
Contents?: true
Size: 788 Bytes
Versions: 26
Compression:
Stored size: 788 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class VenetianMask < 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 12a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V7h-5a8 8 0 0 0-5 2 8 8 0 0 0-5-2H2Z' ) s.path(d: 'M6 11c1.5 0 3 .5 3 2-2 0-3 0-3-2Z') s.path(d: 'M18 11c-1.5 0-3 .5-3 2 2 0 3 0 3-2Z') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems