Class: PhlexIcons::Radix::DragHandleDots1
- Defined in:
- lib/phlex-icons/radix/drag_handle_dots_1.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
Methods inherited from Base
Constructor Details
This class inherits a constructor from PhlexIcons::Radix::Base
Instance Method Details
#view_template ⇒ Object
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 35 36 37 38 39 |
# File 'lib/phlex-icons/radix/drag_handle_dots_1.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.circle(cx: '4.5', cy: '2.5', r: '.6', fill: 'currentColor') s.circle(cx: '4.5', cy: '4.5', r: '.6', fill: 'currentColor') s.circle(cx: '4.5', cy: '6.499', r: '.6', fill: 'currentColor') s.circle(cx: '4.5', cy: '8.499', r: '.6', fill: 'currentColor') s.circle(cx: '4.5', cy: '10.498', r: '.6', fill: 'currentColor') s.circle(cx: '4.5', cy: '12.498', r: '.6', fill: 'currentColor') s.circle(cx: '6.5', cy: '2.5', r: '.6', fill: 'currentColor') s.circle(cx: '6.5', cy: '4.5', r: '.6', fill: 'currentColor') s.circle(cx: '6.5', cy: '6.499', r: '.6', fill: 'currentColor') s.circle(cx: '6.5', cy: '8.499', r: '.6', fill: 'currentColor') s.circle(cx: '6.5', cy: '10.498', r: '.6', fill: 'currentColor') s.circle(cx: '6.5', cy: '12.498', r: '.6', fill: 'currentColor') s.circle(cx: '8.499', cy: '2.5', r: '.6', fill: 'currentColor') s.circle(cx: '8.499', cy: '4.5', r: '.6', fill: 'currentColor') s.circle(cx: '8.499', cy: '6.499', r: '.6', fill: 'currentColor') s.circle(cx: '8.499', cy: '8.499', r: '.6', fill: 'currentColor') s.circle(cx: '8.499', cy: '10.498', r: '.6', fill: 'currentColor') s.circle(cx: '8.499', cy: '12.498', r: '.6', fill: 'currentColor') s.circle(cx: '10.499', cy: '2.5', r: '.6', fill: 'currentColor') s.circle(cx: '10.499', cy: '4.5', r: '.6', fill: 'currentColor') s.circle(cx: '10.499', cy: '6.499', r: '.6', fill: 'currentColor') s.circle(cx: '10.499', cy: '8.499', r: '.6', fill: 'currentColor') s.circle(cx: '10.499', cy: '10.498', r: '.6', fill: 'currentColor') s.circle(cx: '10.499', cy: '12.498', r: '.6', fill: 'currentColor') end end |