Class: PhlexIcons::Tabler::BrandQq

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

Instance Attribute Summary

Attributes inherited from Base

#variant

Attributes inherited from Base

#attrs

Instance Method Summary collapse

Methods inherited from Base

#initialize, #view_template

Methods inherited from Base

#initialize, #view_template

Constructor Details

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

Instance Method Details

#filledObject

Raises:

  • (NotImplementedError)


7
8
9
# File 'lib/phlex-icons/tabler/brand_qq.rb', line 7

def filled
  raise NotImplementedError
end

#outlineObject



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
38
39
40
41
# File 'lib/phlex-icons/tabler/brand_qq.rb', line 11

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:
        'M6 9.748a14.716 14.716 0 0 0 11.995 -.052c.275 -9.236 -11.104 -11.256 -11.995 .052z'
    )
    s.path(
      d:
        'M18 10c.984 2.762 1.949 4.765 2 7.153c.014 .688 -.664 1.346 -1.184 .303c-.346 -.696 -.952 -1.181 -1.816 -1.456'
    )
    s.path(d: 'M17 16c.031 1.831 .147 3.102 -1 4')
    s.path(d: 'M8 20c-1.099 -.87 -.914 -2.24 -1 -4')
    s.path(
      d:
        'M6 10c-.783 2.338 -1.742 4.12 -1.968 6.43c-.217 2.227 .716 1.644 1.16 .917c.296 -.487 .898 -.934 1.808 -1.347'
    )
    s.path(d: 'M15.898 13l-.476 -2')
    s.path(d: 'M8 20l-1.5 1c-.5 .5 -.5 1 .5 1h10c1 0 1 -.5 .5 -1l-1.5 -1')
    s.path(d: 'M13.75 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0')
    s.path(d: 'M10.25 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0')
  end
end