Sha256: d1083f62c332cea53d2c63fa5e106e9407e9b8bded9a083eb8f436f87db4f587
Contents?: true
Size: 847 Bytes
Versions: 12
Compression:
Stored size: 847 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Train < Base def filled raise NotImplementedError end def outline 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: 'M21 13c0 -3.87 -3.37 -7 -10 -7h-8') s.path(d: 'M3 15h16a2 2 0 0 0 2 -2') s.path(d: 'M3 6v5h17.5') s.path(d: 'M3 10l0 4') s.path(d: 'M8 11l0 -5') s.path(d: 'M13 11l0 -4.5') s.path(d: 'M3 19l18 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems