Sha256: 50fd7244f70e80e91467e8e18a1d409b04b9a5063b1920e4041047eb3d48c9fa
Contents?: true
Size: 823 Bytes
Versions: 14
Compression:
Stored size: 823 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceWatchCancel < 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: 'M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3') s.path(d: 'M9 18v3h3') s.path(d: 'M9 6v-3h6v3') s.path(d: 'M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') s.path(d: 'M17 21l4 -4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems