lib/phlex/icons/tabler/device_watch.rb in phlex-icons-0.16.0 vs lib/phlex/icons/tabler/device_watch.rb in phlex-icons-0.17.0

- old
+ new

@@ -1,13 +1,24 @@ # frozen_string_literal: true +# rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class DeviceWatch < Base def filled - raise NotImplementedError + svg( + class: classes, + xmlns: 'http://www.w3.org/2000/svg', + viewbox: '0 0 24 24', + fill: 'currentColor' + ) do |s| + s.path( + d: + 'M15 2a1 1 0 0 1 1 1v2.126c1.726 .445 3 2.01 3 3.874v6a4 4 0 0 1 -3 3.874v2.126a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-2.126a4 4 0 0 1 -3 -3.874v-6a4 4 0 0 1 3 -3.874v-2.126a1 1 0 0 1 1 -1zm-1 17h-4v1h4zm0 -15h-4v1h4z' + ) + end end def outline svg( class: classes, @@ -29,5 +40,6 @@ end end end end end +# rubocop:enable Layout/LineLength