Class: PhlexIcons::Radix::BorderAll
- Defined in:
- lib/phlex-icons/radix/border_all.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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/phlex-icons/radix/border_all.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( fill_rule: 'evenodd', clip_rule: 'evenodd', d: 'M0.25 1C0.25 0.585786 0.585786 0.25 1 0.25H14C14.4142 0.25 14.75 0.585786 14.75 1V14C14.75 14.4142 14.4142 14.75 14 14.75H1C0.585786 14.75 0.25 14.4142 0.25 14V1ZM1.75 1.75V13.25H13.25V1.75H1.75Z', fill: 'currentColor' ) s.rect( x: '7', y: '5', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '7', y: '3', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '7', y: '7', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '5', y: '7', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '3', y: '7', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '9', y: '7', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '11', y: '7', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '7', y: '9', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '7', y: '11', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) end end |