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