Sha256: eb94cb04ce775cd032d6e72473b35700d65723662dae2b28c29d662b73dbc4b6
Contents?: true
Size: 802 Bytes
Versions: 3
Compression:
Stored size: 802 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class AirVentIcon < Phlex::Lucide::Icon def view_template svg( xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewbox: "0 0 24 24", fill: "none", stroke: "currentColor", stroke_width: "2", stroke_linecap: "round", stroke_linejoin: "round", **props ) 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
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
phlex-lucide-0.428.0 | lib/phlex/lucide/icons/air_vent_icon.rb |
phlex-lucide-0.427.1 | lib/phlex/lucide/icons/air_vent_icon.rb |
phlex-lucide-0.427.0 | lib/phlex/lucide/icons/air_vent_icon.rb |