Class: Phlex::Icons::Iconoir::QuoteMessage

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex/icons/iconoir/icons/quote_message.rb

Instance Method Summary collapse

Methods inherited from Base

#initialize, #view_template

Constructor Details

This class inherits a constructor from Phlex::Icons::Iconoir::Base

Instance Method Details

#regularObject



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
# File 'lib/phlex/icons/iconoir/icons/quote_message.rb', line 2

def regular
  svg(
    class: @class,
    width: @width,
    height: @height,
    stroke_width: @stroke_width,
    viewbox: "0 0 24 24",
    fill: "none",
    xmlns: "http://www.w3.org/2000/svg"
  ) do |s|
    s.path(
      d:
        "M3 20.2895V5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V15C21 16.1046 20.1046 17 19 17H7.96125C7.35368 17 6.77906 17.2762 6.39951 17.7506L4.06852 20.6643C3.71421 21.1072 3 20.8567 3 20.2895Z",
      stroke: "currentColor"
    )
    s.path(
      d:
        "M10.5 10H8.5C7.94772 10 7.5 9.55228 7.5 9V8C7.5 7.44772 7.94772 7 8.5 7H9.5C10.0523 7 10.5 7.44772 10.5 8V10ZM10.5 10C10.5 11 9.5 12 8.5 13",
      stroke: "currentColor",
      stroke_linecap: "round"
    )
    s.path(
      d:
        "M16.5 10H14.5C13.9477 10 13.5 9.55228 13.5 9V8C13.5 7.44772 13.9477 7 14.5 7H15.5C16.0523 7 16.5 7.44772 16.5 8V10ZM16.5 10C16.5 11 15.5 12 14.5 13",
      stroke: "currentColor",
      stroke_linecap: "round"
    )
  end
end

#solidObject



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/phlex/icons/iconoir/icons/quote_message.rb', line 32

def solid
  svg(
    class: @class,
    width: @width,
    height: @height,
    viewbox: "0 0 24 24",
    fill: "none",
    xmlns: "http://www.w3.org/2000/svg"
  ) do |s|
    s.path(
      fill_rule: "evenodd",
      clip_rule: "evenodd",
      d:
        "M2.25 5C2.25 3.48122 3.48122 2.25 5 2.25H19C20.5188 2.25 21.75 3.48122 21.75 5V15C21.75 16.5188 20.5188 17.75 19 17.75H7.96125C7.58154 17.75 7.2224 17.9226 6.98516 18.2191L4.65418 21.1328C3.85702 22.1293 2.25 21.5657 2.25 20.2895V5ZM9.48099 10.75C9.42305 10.8439 9.35472 10.9437 9.275 11.05C8.93823 11.499 8.47947 11.9599 7.96967 12.4697C7.67678 12.7626 7.67678 13.2374 7.96967 13.5303C8.26256 13.8232 8.73744 13.8232 9.03033 13.5303L9.05192 13.5087C9.53637 13.0243 10.0678 12.4929 10.475 11.95C10.8823 11.4069 11.25 10.7447 11.25 10V8C11.25 7.03352 10.4665 6.25 9.5 6.25H8.5C7.53351 6.25 6.75 7.03351 6.75 8V9C6.75 9.96649 7.53351 10.75 8.5 10.75H9.48099ZM15.275 11.05C15.3547 10.9437 15.4231 10.8439 15.481 10.75H14.5C13.5335 10.75 12.75 9.96648 12.75 9V8C12.75 7.03352 13.5335 6.25 14.5 6.25H15.5C16.4665 6.25 17.25 7.03352 17.25 8V10C17.25 10.7447 16.8823 11.4069 16.475 11.95C16.0678 12.4929 15.5364 13.0243 15.0519 13.5087L15.0303 13.5303C14.7374 13.8232 14.2626 13.8232 13.9697 13.5303C13.6768 13.2374 13.6768 12.7626 13.9697 12.4697C14.4795 11.9599 14.9382 11.499 15.275 11.05Z",
      fill: "currentColor"
    )
  end
end