Class: PhlexIcons::Radix::CircleBackslash

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



7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/phlex-icons/radix/circle_backslash.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(
      d:
        'M7.49915 0.877075C11.1566 0.877075 14.1218 3.84181 14.1222 7.49915C14.1222 11.1568 11.1568 14.1222 7.49915 14.1222C3.84181 14.1218 0.877075 11.1566 0.877075 7.49915C0.877487 3.84206 3.84206 0.877487 7.49915 0.877075ZM3.15051 3.85754C2.32445 4.84289 1.82648 6.11293 1.82629 7.49915C1.82629 10.6319 4.36648 13.1716 7.49915 13.172C8.88559 13.172 10.1553 12.6739 11.1407 11.8478L3.15051 3.85754ZM7.49915 1.82629C6.11293 1.82648 4.84289 2.32445 3.85754 3.15051L11.8478 11.1407C12.6739 10.1553 13.172 8.88559 13.172 7.49915C13.1716 4.36648 10.6319 1.82629 7.49915 1.82629Z',
      fill: 'currentColor'
    )
  end
end