Class: Phlex::Icons::Iconoir::KeyframeMinusIn

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex/icons/iconoir/icons/keyframe_minus_in.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
# File 'lib/phlex/icons/iconoir/icons/keyframe_minus_in.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: "M9 12H12H15",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d:
        "M20.777 13.3453L13.4799 21.3721C12.6864 22.245 11.3136 22.245 10.5201 21.3721L3.22304 13.3453C2.52955 12.5825 2.52955 11.4175 3.22304 10.6547L10.5201 2.62787C11.3136 1.755 12.6864 1.755 13.4799 2.62787L20.777 10.6547C21.4705 11.4175 21.4705 12.5825 20.777 13.3453Z",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
  end
end

#solidObject



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/phlex/icons/iconoir/icons/keyframe_minus_in.rb', line 28

def solid
  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(
      fill_rule: "evenodd",
      clip_rule: "evenodd",
      d:
        "M14.0348 2.12379C12.9437 0.923583 11.0562 0.923581 9.96509 2.12378L2.66803 10.1506C1.71449 11.1995 1.7145 12.8014 2.66805 13.8502L9.96509 21.877C11.0562 23.0772 12.9438 23.0772 14.0348 21.877L21.3319 13.8502C22.2855 12.8014 22.2855 11.1995 21.3319 10.1506L14.0348 2.12379ZM8.99999 11.25C8.58578 11.25 8.24999 11.5858 8.24999 12C8.24999 12.4142 8.58578 12.75 8.99999 12.75H12H15C15.4142 12.75 15.75 12.4142 15.75 12C15.75 11.5858 15.4142 11.25 15 11.25H12H8.99999Z",
      fill: "currentColor"
    )
  end
end