Sha256: a9df3944fa84e7b0280042ee3f67074542b5ac4cc3fc3762c16d9df9966972a9

Contents?: true

Size: 1.23 KB

Versions: 12

Compression:

Stored size: 1.23 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class ZoomOut < 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:
                'M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-1 5.928h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z'
            )
          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: 'M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0')
            s.path(d: 'M7 10l6 0')
            s.path(d: 'M21 21l-6 -6')
          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/zoom_out.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/zoom_out.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/zoom_out.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/zoom_out.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/zoom_out.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/zoom_out.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/zoom_out.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/zoom_out.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/zoom_out.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/zoom_out.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/zoom_out.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/zoom_out.rb