Sha256: e6db2a5b5134214ced4654d0f5bbbe9498baf3d266bd85729f6f428c3cdd2b50
Contents?: true
Size: 602 Bytes
Versions: 14
Compression:
Stored size: 602 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class FastForward < 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: '13 19 22 12 13 5 13 19') s.polygon(points: '2 19 11 12 2 5 2 19') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems