lib/phlex/icons/tabler/dashboard.rb in phlex-icons-tabler-0.16.0 vs lib/phlex/icons/tabler/dashboard.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 Dashboard < 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:
+ 'M12 2.954a10 10 0 0 1 6.222 17.829a1 1 0 0 1 -.622 .217h-11.2a1 1 0 0 1 -.622 -.217a10 10 0 0 1 6.222 -17.829m4.207 5.839a1 1 0 0 0 -1.414 0l-2.276 2.274a2.003 2.003 0 0 0 -2.514 1.815l-.003 .118a2 2 0 1 0 3.933 -.517l2.274 -2.276a1 1 0 0 0 0 -1.414'
+ )
+ end
end
def outline
svg(
class: classes,
@@ -26,5 +37,6 @@
end
end
end
end
end
+# rubocop:enable Layout/LineLength