Sha256: 0bb46786471f2d69ddea25281be8062281ec6788ecb0ab831979755c321bfe15
Contents?: true
Size: 644 Bytes
Versions: 14
Compression:
Stored size: 644 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Globe < 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.circle(cx: '12', cy: '12', r: '10') s.path(d: 'M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20') s.path(d: 'M2 12h20') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems