Sha256: 839c89311eb517485f860f48bcd314e9cd28d43bd7206b91aaa8cd461ba435db

Contents?: true

Size: 726 Bytes

Versions: 25

Compression:

Stored size: 726 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Bootstrap
      class ChevronBarLeft < 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(
              fill_rule: 'evenodd',
              d:
                'M11.854 3.646a.5.5 0 0 1 0 .708L8.207 8l3.647 3.646a.5.5 0 0 1-.708.708l-4-4a.5.5 0 0 1 0-.708l4-4a.5.5 0 0 1 .708 0M4.5 1a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 1 0v-13a.5.5 0 0 0-.5-.5'
            )
          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/chevron_bar_left.rb
phlex-icons-0.4.0 lib/phlex/icons/bootstrap/chevron_bar_left.rb
phlex-icons-0.3.0 lib/phlex/icons/bootstrap/chevron_bar_left.rb
phlex-icons-0.2.0 lib/phlex/icons/bootstrap/chevron_bar_left.rb
phlex-icons-0.1.0 lib/phlex/icons/bootstrap/chevron_bar_left.rb