Sha256: e5e693476230f735fbd4a0798d124dedfe9073dfb5fa9238094f72ffa51ba678
Contents?: true
Size: 671 Bytes
Versions: 3
Compression:
Stored size: 671 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class KeyIcon < 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: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4") s.path(d: "m21 2-9.6 9.6") s.circle(cx: "7.5", cy: "15.5", r: "5.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/key_icon.rb |
phlex-lucide-0.427.1 | lib/phlex/lucide/icons/key_icon.rb |
phlex-lucide-0.427.0 | lib/phlex/lucide/icons/key_icon.rb |