Sha256: 50aa8b122c522698a570833f8f96e591d9f4b7ebb0b9e2b1db0d914486df0529
Contents?: true
Size: 826 Bytes
Versions: 3
Compression:
Stored size: 826 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class BabyIcon < 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: "M9 12h.01") s.path(d: "M15 12h.01") s.path(d: "M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5") s.path( d: "M19 6.3a9 9 0 0 1 1.8 3.9 2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1" ) 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/baby_icon.rb |
phlex-lucide-0.427.1 | lib/phlex/lucide/icons/baby_icon.rb |
phlex-lucide-0.427.0 | lib/phlex/lucide/icons/baby_icon.rb |