Sha256: acc2192b6e2b7a42cf6e4cc02251cc979868c3cbed483c6248dc20fd4c56d0c0
Contents?: true
Size: 717 Bytes
Versions: 25
Compression:
Stored size: 717 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Bootstrap class Arrow90degLeft < 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: 'M1.146 4.854a.5.5 0 0 1 0-.708l4-4a.5.5 0 1 1 .708.708L2.707 4H12.5A2.5 2.5 0 0 1 15 6.5v8a.5.5 0 0 1-1 0v-8A1.5 1.5 0 0 0 12.5 5H2.707l3.147 3.146a.5.5 0 1 1-.708.708z' ) end end end end end end # rubocop:enable Layout/LineLength
Version data entries
25 entries across 25 versions & 2 rubygems