Sha256: b83d562df3ea4316d3aa226592db913dd52676f8c538817f3dcb76d7a49ff527

Contents?: true

Size: 637 Bytes

Versions: 25

Compression:

Stored size: 637 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Bootstrap
      class CaretRight < Base
        def view_template
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            fill: 'currentColor',
            viewbox: '0 0 16 16'
          ) do |s|
            s.path(
              d:
                'M6 12.796V3.204L11.481 8zm.659.753 5.48-4.796a1 1 0 0 0 0-1.506L6.66 2.451C6.011 1.885 5 2.345 5 3.204v9.592a1 1 0 0 0 1.659.753'
            )
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
phlex-icons-0.5.0 lib/phlex/icons/bootstrap/caret_right.rb
phlex-icons-0.4.0 lib/phlex/icons/bootstrap/caret_right.rb
phlex-icons-0.3.0 lib/phlex/icons/bootstrap/caret_right.rb
phlex-icons-0.2.0 lib/phlex/icons/bootstrap/caret_right.rb
phlex-icons-0.1.0 lib/phlex/icons/bootstrap/caret_right.rb