Sha256: cf29046442dd5cf8ace2b5e52c6ba74b1c2e82087a869fe17f83e35867655bec
Contents?: true
Size: 778 Bytes
Versions: 26
Compression:
Stored size: 778 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class TrainFront < 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: 'M8 3.1V7a4 4 0 0 0 8 0V3.1') s.path(d: 'm9 15-1-1') s.path(d: 'm15 15 1-1') s.path(d: 'M9 19c-2.8 0-5-2.2-5-5v-4a8 8 0 0 1 16 0v4c0 2.8-2.2 5-5 5Z') s.path(d: 'm8 19-2 3') s.path(d: 'm16 19 2 3') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems