-
Notifications
You must be signed in to change notification settings - Fork 1
/
brand_surfshark.rb
37 lines (35 loc) · 1 KB
/
brand_surfshark.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# frozen_string_literal: true
# rubocop:disable Layout/LineLength
module Phlex
module Icons
module Tabler
class BrandSurfshark < 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:
'M19.954 9.447c-.237 -6.217 0 -6.217 -6 -6.425c-5.774 -.208 -6.824 1 -7.91 5.382c-2.884 11.816 -3.845 14.716 4.792 11.198c9.392 -3.831 9.297 -5.382 9.114 -10.155z'
)
s.path(
d:
'M8 16h.452c1.943 .007 3.526 -1.461 3.543 -3.286v-2.428c.018 -1.828 1.607 -3.298 3.553 -3.286h.452'
)
end
end
end
end
end
end
# rubocop:enable Layout/LineLength