Sha256: 2d2681bfe67e9ac0f86e18e8f0cc221800f068e918a97a20260cfa33b2364b95
Contents?: true
Size: 679 Bytes
Versions: 14
Compression:
Stored size: 679 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class SatelliteDish < 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: 'M4 10a7.31 7.31 0 0 0 10 10Z') s.path(d: 'm9 15 3-3') s.path(d: 'M17 13a6 6 0 0 0-6-6') s.path(d: 'M21 13A10 10 0 0 0 11 3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems