Sha256: c6b51db0231f14783c4ad8b2faad84a096d331cab505dce8977427c9c6384583
Contents?: true
Size: 828 Bytes
Versions: 14
Compression:
Stored size: 828 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceWatchStats2 < Base def filled raise NotImplementedError end def outline 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: 'M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z' ) s.path(d: 'M9 18v3h6v-3') s.path(d: 'M9 6v-3h6v3') s.path(d: 'M12 10a2 2 0 1 0 2 2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems