Class: PhlexIcons::Radix::BorderSplit
- Defined in:
- lib/phlex-icons/radix/border_split.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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
# File 'lib/phlex-icons/radix/border_split.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.rect( x: '7', y: '5.025', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '7', y: '3.025', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '7', y: '7.025', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '7', y: '13.025', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '7', y: '1.025', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '13', y: '7.025', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '5', y: '7.025', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '3', y: '7.025', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '9', y: '7.025', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '11', y: '7.025', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '7', y: '9.025', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '7', y: '11.025', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.rect( x: '1', y: '7.025', width: '1', height: '1', rx: '.5', fill: 'currentColor' ) s.path( fill_rule: 'evenodd', clip_rule: 'evenodd', d: 'M1 1.49994C1 1.2238 1.22386 0.999939 1.5 0.999939H6V1.99994H2V5.99994H1V1.49994ZM13 1.99994H9V0.999939H13.5C13.7761 0.999939 14 1.2238 14 1.49994V5.99994H13V1.99994ZM1 13.4999V8.99994H2V12.9999H6V13.9999H1.5C1.22386 13.9999 1 13.7761 1 13.4999ZM13 12.9999V8.99994H14V13.4999C14 13.7761 13.7761 13.9999 13.5 13.9999H9.5V12.9999H13Z', fill: 'currentColor' ) end end |