Class: Phlex::Icons::Iconoir::BookLock

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

def regular
  svg(
    class: @class,
    width: @width,
    stroke_width: @stroke_width,
    height: @height,
    viewbox: "0 0 24 24",
    fill: "none",
    xmlns: "http://www.w3.org/2000/svg"
  ) do |s|
    s.path(
      d:
        "M4 19V5C4 3.89543 4.89543 3 6 3H19.4C19.7314 3 20 3.26863 20 3.6V16.7143",
      stroke: "currentColor",
      stroke_linecap: "round"
    )
    s.path(
      d:
        "M14 10H14.4C14.7314 10 15 10.2686 15 10.6V13.4C15 13.7314 14.7314 14 14.4 14H9.6C9.26863 14 9 13.7314 9 13.4V10.6C9 10.2686 9.26863 10 9.6 10H10M14 10V8C14 7.33333 13.6 6 12 6C10.4 6 10 7.33333 10 8V10M14 10H10",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(d: "M6 17L20 17", stroke: "currentColor", stroke_linecap: "round")
    s.path(d: "M6 21L20 21", stroke: "currentColor", stroke_linecap: "round")
    s.path(
      d: "M6 21C4.89543 21 4 20.1046 4 19C4 17.8954 4.89543 17 6 17",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
  end
end