Sha256: bb3718aa2ffb144895156cc64ff17e2e3384c700fc0972f8bbb5b7803d1075c5
Contents?: true
Size: 673 Bytes
Versions: 26
Compression:
Stored size: 673 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Key < Base def view_template svg( class: classes, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'none', stroke: 'currentColor', stroke_width: '2', stroke_linecap: 'round', stroke_linejoin: 'round' ) 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 end
Version data entries
26 entries across 26 versions & 2 rubygems