Sha256: 2ba1e51bdbd34c4f1b10bfb8dc4a2237cac9886be88fca7ea1d271ef31b7f0a8

Contents?: true

Size: 1.47 KB

Versions: 12

Compression:

Stored size: 1.47 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class TransitionRight < 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:
                'M18 2a4 4 0 0 1 4 4v12a4 4 0 0 1 -4 4a1 1 0 0 1 -.117 -1.993l.117 -.007a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2a1 1 0 0 1 0 -2m-8 16a4 4 0 1 1 -8 0v-12a4 4 0 1 1 8 0v5h4.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.414 0l3 3l.097 .112l.071 .11l.031 .062l.034 .081l.024 .076l.03 .148l.006 .118l-.004 .085l-.016 .116l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-3 3a1 1 0 0 1 -1.414 -1.414l1.292 -1.293h-4.585z'
            )
          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: 'M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3')
            s.path(d: 'M3 18v-12a3 3 0 1 1 6 0v12a3 3 0 0 1 -6 0z')
            s.path(d: 'M9 12h8')
            s.path(d: 'M14 15l3 -3l-3 -3')
          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/transition_right.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/transition_right.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/transition_right.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/transition_right.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/transition_right.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/transition_right.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/transition_right.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/transition_right.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/transition_right.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/transition_right.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/transition_right.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/transition_right.rb