Sha256: 72834c333e89271df38c0f6339a4d4b43232e468abe3a559054119bbe74087d5

Contents?: true

Size: 1.43 KB

Versions: 12

Compression:

Stored size: 1.43 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class YinYang < Base
        def filled
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-9 1.732a8 8 0 0 0 4 14.928l.2 -.005a4 4 0 0 0 0 -7.99l-.2 -.005a4 4 0 0 1 -.2 -7.995l.2 -.005a7.995 7.995 0 0 0 -4 1.072zm4 1.428a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z'
            )
            s.path(d: 'M12 14.5a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0 -3z')
          end
        end

        def outline
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'none',
            stroke: 'currentColor',
            stroke_width: '2',
            stroke_linecap: 'round',
            stroke_linejoin: 'round'
          ) do |s|
            s.path(d: 'M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0')
            s.path(d: 'M12 3a4.5 4.5 0 0 0 0 9a4.5 4.5 0 0 1 0 9')
            s.circle(cx: '12', cy: '7.5', r: '.5', fill: 'currentColor')
            s.circle(cx: '12', cy: '16.5', r: '.5', fill: 'currentColor')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
phlex-icons-tabler-0.17.0 lib/phlex/icons/tabler/yin_yang.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/yin_yang.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/yin_yang.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/yin_yang.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/yin_yang.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/yin_yang.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/yin_yang.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/yin_yang.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/yin_yang.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/yin_yang.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/yin_yang.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/yin_yang.rb