Sha256: eb481e1273836ee08c839c187a55cf4bb5434d2ef89724a8db35de83e517d746
Contents?: true
Size: 666 Bytes
Versions: 18
Compression:
Stored size: 666 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Key < Base def view_template svg( **attrs, 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
18 entries across 18 versions & 2 rubygems