Class: PhlexIcons::Remix::Game2Line

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/remix/game_2_line.rb

Instance Attribute Summary

Attributes inherited from Base

#attrs

Instance Method Summary collapse

Methods inherited from Base

#initialize

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from PhlexIcons::Remix::Base

Instance Method Details

#view_templateObject



7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/phlex-icons/remix/game_2_line.rb', line 7

def view_template
  svg(
    **attrs,
    viewbox: '0 0 24 24',
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg'
  ) do |s|
    s.path(
      d:
        'M7 4H9V6H15V4H17V2H19V6H17V8H19V10H23V16H21V12H20V18H17V20H19V22H15V18H9V22H5V20H7V18H4V12H3V16H1V10H5V8H7V6H5V2H7V4ZM9 10H7V12H6V16H18V12H17V10H15V8H9V10ZM11 14H9V11H11V14ZM15 14H13V11H15V14Z'
    )
  end
end