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

- old
+ new

@@ -1,13 +1,24 @@ # frozen_string_literal: true +# rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class DeviceDesktop < 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: + 'M7 21a1 1 0 0 1 0 -2h1v-2h-4a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-4v2h1a1 1 0 0 1 0 2zm7 -4h-4v2h4z' + ) + end end def outline svg( class: classes, @@ -30,5 +41,6 @@ end end end end end +# rubocop:enable Layout/LineLength