Class: PhlexIcons::Radix::Square

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/radix/square.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



6
7
8
9
10
11
12
13
# File 'lib/phlex-icons/radix/square.rb', line 6

def view_template
  svg(
    **attrs,
    viewbox: '0 0 15 15',
    fill: 'none',
    xmlns: 'http://www.w3.org/2000/svg'
  ) { |s| s.path(d: 'M14 14H1V1H14V14ZM2 13H13V2H2V13Z', fill: 'currentColor') }
end