Sha256: 19f893c9b025751caefa9a77413e4864273c0c9a174f061b1db905cc65dd1366
Contents?: true
Size: 805 Bytes
Versions: 14
Compression:
Stored size: 805 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class AirVent < Base def view_template svg( **attrs, 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: 'M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2' ) s.path(d: 'M6 8h12') s.path(d: 'M18.3 17.7a2.5 2.5 0 0 1-3.16 3.83 2.53 2.53 0 0 1-1.14-2V12') s.path(d: 'M6.6 15.6A2 2 0 1 0 10 17v-5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems