-
Notifications
You must be signed in to change notification settings - Fork 1
/
award.rb
26 lines (25 loc) · 983 Bytes
/
award.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
# frozen_string_literal: true
# rubocop:disable Layout/LineLength
module Phlex
module Icons
module Bootstrap
class Award < Base
def view_template
svg(
**attrs,
xmlns: 'http://www.w3.org/2000/svg',
fill: 'currentColor',
viewbox: '0 0 16 16'
) do |s|
s.path(
d:
'M9.669.864 8 0 6.331.864l-1.858.282-.842 1.68-1.337 1.32L2.6 6l-.306 1.854 1.337 1.32.842 1.68 1.858.282L8 12l1.669-.864 1.858-.282.842-1.68 1.337-1.32L13.4 6l.306-1.854-1.337-1.32-.842-1.68zm1.196 1.193.684 1.365 1.086 1.072L12.387 6l.248 1.506-1.086 1.072-.684 1.365-1.51.229L8 10.874l-1.355-.702-1.51-.229-.684-1.365-1.086-1.072L3.614 6l-.25-1.506 1.087-1.072.684-1.365 1.51-.229L8 1.126l1.356.702z'
)
s.path(d: 'M4 11.794V16l4-1 4 1v-4.206l-2.018.306L8 13.126 6.018 12.1z')
end
end
end
end
end
end
# rubocop:enable Layout/LineLength