lib/phlex/icons/tabler/meteor.rb in phlex-icons-tabler-0.16.0 vs lib/phlex/icons/tabler/meteor.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 Meteor < 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:
+ 'M21.874 3.486l-4.174 7.514h3.3c.846 0 1.293 .973 .791 1.612l-.074 .085l-6.9 7.095a7.5 7.5 0 1 1 -10.21 -10.974l7.746 -6.58c.722 -.614 1.814 .028 1.628 .958l-.577 2.879l7.11 -3.95c.88 -.488 1.849 .481 1.36 1.36m-12.374 7.515a3.5 3.5 0 0 0 -3.495 3.308l-.005 .192a3.5 3.5 0 1 0 3.5 -3.5'
+ )
+ end
end
def outline
svg(
class: classes,
@@ -28,5 +39,6 @@
end
end
end
end
end
+# rubocop:enable Layout/LineLength