Class: Phlex::Lucide::SlackIcon

Inherits:
Icon
  • Object
show all
Defined in:
lib/phlex/lucide/icons/slack_icon.rb

Instance Attribute Summary

Attributes inherited from Icon

#props, #size

Instance Method Summary collapse

Methods inherited from Icon

#initialize

Constructor Details

This class inherits a constructor from Phlex::Lucide::Icon

Instance Method Details

#view_templateObject



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/phlex/lucide/icons/slack_icon.rb', line 6

def view_template
  svg(
    xmlns: "http://www.w3.org/2000/svg",
    width: size,
    height: size,
    viewbox: "0 0 24 24",
    fill: "none",
    stroke: "currentColor",
    stroke_width: "2",
    stroke_linecap: "round",
    stroke_linejoin: "round",
    **props
  ) do |s|
    s.rect(width: "3", height: "8", x: "13", y: "2", rx: "1.5")
    s.path(d: "M19 8.5V10h1.5A1.5 1.5 0 1 0 19 8.5")
    s.rect(width: "3", height: "8", x: "8", y: "14", rx: "1.5")
    s.path(d: "M5 15.5V14H3.5A1.5 1.5 0 1 0 5 15.5")
    s.rect(width: "8", height: "3", x: "14", y: "13", rx: "1.5")
    s.path(d: "M15.5 19H14v1.5a1.5 1.5 0 1 0 1.5-1.5")
    s.rect(width: "8", height: "3", x: "2", y: "8", rx: "1.5")
    s.path(d: "M8.5 5H10V3.5A1.5 1.5 0 1 0 8.5 5")
  end
end