Class: PhlexIcons::Radix::Dash

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/radix/dash.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/dash.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:
        'M9.60059 7.00977C9.82855 7.05629 10 7.25829 10 7.5C10 7.74171 9.82855 7.94371 9.60059 7.99023L9.5 8H5.5C5.22386 8 5 7.77614 5 7.5C5 7.22386 5.22386 7 5.5 7H9.5L9.60059 7.00977Z',
      fill: 'currentColor'
    )
  end
end