Class: PhlexIcons::Radix::BorderSolid

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/radix/border_solid.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/border_solid.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:
        'M13.3506 7.00977C13.5786 7.05629 13.75 7.25829 13.75 7.5C13.75 7.74171 13.5786 7.94371 13.3506 7.99023L13.25 8H1.75C1.47386 8 1.25 7.77614 1.25 7.5C1.25 7.22386 1.47386 7 1.75 7H13.25L13.3506 7.00977Z',
      fill: 'currentColor'
    )
  end
end