# frozen_string_literal: true
# rubocop:disable Metrics/AbcSize,Metrics/BlockLength,Metrics/MethodLength
module Phlex
module Icons
module Radix
class BorderNone < Base
def view_template
svg(
class: classes,
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: '13',
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: '13',
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: '13',
y: '13.025',
width: '1',
height: '1',
rx: '.5',
fill: 'currentColor'
)
s.rect(
x: '13',
y: '1.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: '5',
y: '13.025',
width: '1',
height: '1',
rx: '.5',
fill: 'currentColor'
)
s.rect(
x: '5',
y: '1.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: '3',
y: '13.025',
width: '1',
height: '1',
rx: '.5',
fill: 'currentColor'
)
s.rect(
x: '3',
y: '1.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: '9',
y: '13.025',
width: '1',
height: '1',
rx: '.5',
fill: 'currentColor'
)
s.rect(
x: '9',
y: '1.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: '11',
y: '13.025',
width: '1',
height: '1',
rx: '.5',
fill: 'currentColor'
)
s.rect(
x: '11',
y: '1.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: '13',
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: '13',
y: '11.025',
width: '1',
height: '1',
rx: '.5',
fill: 'currentColor'
)
s.rect(
x: '1',
y: '5.025',
width: '1',
height: '1',
rx: '.5',
fill: 'currentColor'
)
s.rect(
x: '1',
y: '3.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.rect(
x: '1',
y: '13.025',
width: '1',
height: '1',
rx: '.5',
fill: 'currentColor'
)
s.rect(
x: '1',
y: '1.025',
width: '1',
height: '1',
rx: '.5',
fill: 'currentColor'
)
s.rect(
x: '1',
y: '9.025',
width: '1',
height: '1',
rx: '.5',
fill: 'currentColor'
)
s.rect(
x: '1',
y: '11.025',
width: '1',
height: '1',
rx: '.5',
fill: 'currentColor'
)
end
end
end
end
end
end
# rubocop:enable Metrics/AbcSize,Metrics/BlockLength,Metrics/MethodLength