Sha256: 6e38242fd5f818e52f3f0b7b2e71d2a4e9c8c6a89125c33252f0a9284232d8a7
Contents?: true
Size: 601 Bytes
Versions: 14
Compression:
Stored size: 601 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class SkipBack < 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.polygon(points: '19 20 9 12 19 4 19 20') s.line(x1: '5', x2: '5', y1: '19', y2: '5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems