Sha256: 1ad197120f373b43b7b586de2a9258837f7d2715c1abf076af709bbf609fd93f
Contents?: true
Size: 745 Bytes
Versions: 26
Compression:
Stored size: 745 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class TrainTrack < Base def view_template svg( class: classes, 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: 'M2 17 17 2') s.path(d: 'm2 14 8 8') s.path(d: 'm5 11 8 8') s.path(d: 'm8 8 8 8') s.path(d: 'm11 5 8 8') s.path(d: 'm14 2 8 8') s.path(d: 'M7 22 22 7') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems