Class: PhlexIcons::Radix::PieChart

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/radix/pie_chart.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/pie_chart.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.5004 0.850006C11.1729 0.850217 14.1498 3.82765 14.1498 7.5004C14.1498 11.1732 11.1729 14.1506 7.5004 14.1508C3.82767 14.1508 0.850006 11.1733 0.850006 7.5004C0.850024 3.82752 3.82768 0.850006 7.5004 0.850006ZM7.5004 1.85001C4.38003 1.85001 1.85002 4.37974 1.85001 7.5004C1.85001 10.6211 4.38002 13.1508 7.5004 13.1508C10.6206 13.1506 13.1498 10.6209 13.1498 7.5004C13.1498 4.37987 10.6206 1.85022 7.5004 1.85001ZM7.5004 3.10001C9.93026 3.10022 11.9008 5.07026 11.9008 7.5004C11.9008 7.66946 11.89 7.83629 11.8715 8.0004H7.0004V3.12833C7.16438 3.10979 7.33146 3.10001 7.5004 3.10001Z',
      fill: 'currentColor'
    )
  end
end