Sha256: ccd7bca7acc57d2512747e9efa8b63985c0a274783aa24e072f38a914a5c9aac
Contents?: true
Size: 856 Bytes
Versions: 2
Compression:
Stored size: 856 Bytes
Contents
# frozen_string_literal: true module Phlex module Heroicons class ArrowDownLeft < Base def outline svg(xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewbox: '0 0 24 24', stroke_width: '1.5', stroke: 'currentColor', aria_hidden: 'true', class: classes) do whitespace path stroke_linecap: 'round', stroke_linejoin: 'round', d: 'M19.5 4.5l-15 15m0 0h11.25m-11.25 0V8.25' end end def solid svg(xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'currentColor', aria_hidden: 'true', class: classes) do whitespace path fill_rule: 'evenodd', d: 'M20.03 3.97a.75.75 0 010 1.06L6.31 18.75h9.44a.75.75 0 010 1.5H4.5a.75.75 0 01-.75-.75V8.25a.75.75 0 011.5 0v9.44L18.97 3.97a.75.75 0 011.06 0z', clip_rule: 'evenodd' end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
phlex-heroicons-1.1.0 | lib/phlex/heroicons/arrow_down_left.rb |
phlex-heroicons-1.0.0 | lib/phlex/heroicons/arrow_down_left.rb |