Sha256: 56c9d084316a5a21b9ade1b7b86d9c1d14a840f00dca5631526a844836d3f002
Contents?: true
Size: 782 Bytes
Versions: 10
Compression:
Stored size: 782 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceWatch < Base def filled raise NotImplementedError end def outline svg( class: classes, 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 9a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3v-6z' ) s.path(d: 'M9 18v3h6v-3') s.path(d: 'M9 6v-3h6v3') end end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems