Sha256: f4f9f22843ab10054adfd7486bdb1cd075b340f253e0eb95c23b3cf8d41cfc4a
Contents?: true
Size: 675 Bytes
Versions: 3
Compression:
Stored size: 675 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class LockKeyholeOpenIcon < 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: "16", r: "1") s.rect(width: "18", height: "12", x: "3", y: "10", rx: "2") s.path(d: "M7 10V7a5 5 0 0 1 9.33-2.5") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems