Sha256: cfb0b7cc59371591725e54f752de9834714df7fffabfd5d18be60631e19e49f4
Contents?: true
Size: 793 Bytes
Versions: 3
Compression:
Stored size: 793 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class ApertureIcon < 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.circle(cx: "12", cy: "12", r: "10") s.path(d: "m14.31 8 5.74 9.94") s.path(d: "M9.69 8h11.48") s.path(d: "m7.38 12 5.74-9.94") s.path(d: "M9.69 16 3.95 6.06") s.path(d: "M14.31 16H2.83") s.path(d: "m16.62 12-5.74 9.94") 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/aperture_icon.rb |
phlex-lucide-0.427.1 | lib/phlex/lucide/icons/aperture_icon.rb |
phlex-lucide-0.427.0 | lib/phlex/lucide/icons/aperture_icon.rb |