Class: PhlexIcons::Radix::CornerBottomLeft

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/radix/corner_bottom_left.rb

Instance Attribute Summary

Attributes inherited from Base

#attrs

Instance Method Summary collapse

Methods inherited from Base

#initialize

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from PhlexIcons::Radix::Base

Instance Method Details

#view_templateObject



7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/phlex-icons/radix/corner_bottom_left.rb', line 7

def view_template
  svg(
    **attrs,
    viewbox: '0 0 15 15',
    fill: 'none',
    xmlns: 'http://www.w3.org/2000/svg'
  ) do |s|
    s.path(
      d:
        'M11.5 12C11.7761 12 12 11.7761 12 11.5C12 11.2239 11.7761 11 11.5 11H9.90039C8.77204 11 7.9554 10.9997 7.31348 10.9473C6.67741 10.8953 6.25672 10.7942 5.91113 10.6182C5.25262 10.2826 4.71738 9.74738 4.38184 9.08887C4.20575 8.74328 4.10471 8.32259 4.05273 7.68652C4.00029 7.0446 4 6.22796 4 5.09961V3.5C4 3.22386 3.77614 3 3.5 3C3.22386 3 3 3.22386 3 3.5V5.09961C3 6.21131 3.00012 7.07553 3.05664 7.76758C3.11366 8.46547 3.23038 9.03293 3.49023 9.54297C3.92166 10.3897 4.6103 11.0783 5.45703 11.5098C5.96707 11.7696 6.53453 11.8863 7.23242 11.9434C7.92447 11.9999 8.78869 12 9.90039 12H11.5Z',
      fill: 'currentColor'
    )
  end
end