Class: Phlex::Icons::Iconoir::AdobeIndesign

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex/icons/iconoir/icons/adobe_indesign.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
31
32
33
# File 'lib/phlex/icons/iconoir/icons/adobe_indesign.rb', line 2

def regular
  svg(
    class: @class,
    width: @width,
    height: @height,
    viewbox: "0 0 24 24",
    stroke_width: @stroke_width,
    fill: "none",
    xmlns: "http://www.w3.org/2000/svg"
  ) do |s|
    s.path(
      d:
        "M21 7V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V7C3 4.79086 4.79086 3 7 3H17C19.2091 3 21 4.79086 21 7Z",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d: "M8.5 8L8.5 16",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d:
        "M15.5 12V15.4C15.5 15.7314 15.2314 16 14.9 16H13.5C12.3954 16 11.5 15.1046 11.5 14V14C11.5 12.8954 12.3954 12 13.5 12H15.5ZM15.5 12V9",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
  end
end

#solidObject



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/phlex/icons/iconoir/icons/adobe_indesign.rb', line 35

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:
        "M21.75 17C21.75 19.6234 19.6234 21.75 17 21.75H7C4.37665 21.75 2.25 19.6234 2.25 17V7C2.25 4.37665 4.37665 2.25 7 2.25H17C19.6234 2.25 21.75 4.37665 21.75 7V17ZM8.5 16.75C8.08579 16.75 7.75 16.4142 7.75 16L7.75 8C7.75 7.58579 8.08579 7.25 8.5 7.25C8.91421 7.25 9.25 7.58579 9.25 8L9.25 16C9.25 16.4142 8.91421 16.75 8.5 16.75ZM13.5 12.75H14.75V15.25H13.5C12.8096 15.25 12.25 14.6904 12.25 14C12.25 13.3096 12.8096 12.75 13.5 12.75ZM13.5 16.75C11.9812 16.75 10.75 15.5188 10.75 14C10.75 12.4812 11.9812 11.25 13.5 11.25H14.75V9C14.75 8.58579 15.0858 8.25 15.5 8.25C15.9142 8.25 16.25 8.58579 16.25 9V15.4C16.25 16.1456 15.6456 16.75 14.9 16.75H13.5Z",
      fill: "currentColor"
    )
  end
end