Sha256: 57e5a77fb8f4ce758370f74f7583f0d7d6907bfcf97c0ab23d5308cf9bdc73a3
Contents?: true
Size: 677 Bytes
Versions: 18
Compression:
Stored size: 677 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Club < 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: 'M17.28 9.05a5.5 5.5 0 1 0-10.56 0A5.5 5.5 0 1 0 12 17.66a5.5 5.5 0 1 0 5.28-8.6Z' ) s.path(d: 'M12 17.66L12 22') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems