Sha256: 7bdf5becfe455d9347b8195059ecdba2e84f1f0a50a5034ae4a4cfb4b2e004e2
Contents?: true
Size: 761 Bytes
Versions: 3
Compression:
Stored size: 761 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class BirdIcon < 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: "M16 7h.01") s.path(d: "M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20") s.path(d: "m20 7 2 .5-2 .5") s.path(d: "M10 18v3") s.path(d: "M14 17.75V21") s.path(d: "M7 18a6 6 0 0 0 3.84-10.61") 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/bird_icon.rb |
phlex-lucide-0.427.1 | lib/phlex/lucide/icons/bird_icon.rb |
phlex-lucide-0.427.0 | lib/phlex/lucide/icons/bird_icon.rb |