Sha256: 41b5c23aff4d3c6300cf81bcf2233fc0d495a51ad10c72e61c7e7a986ab0616a
Contents?: true
Size: 689 Bytes
Versions: 14
Compression:
Stored size: 689 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class MonitorDot < 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: '19', cy: '6', r: '3') s.path(d: 'M22 12v3a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h9') s.path(d: 'M12 17v4') s.path(d: 'M8 21h8') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems