Sha256: ae44f5ef6bfb8e63216fc36c5bc04f279854db36f3997a5b891902b2a48f460c
Contents?: true
Size: 566 Bytes
Versions: 14
Compression:
Stored size: 566 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ChevronLast < Base def view_template svg( **attrs, 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: 'm7 18 6-6-6-6') s.path(d: 'M17 6v12') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems