Sha256: 613c0aa5fa2dffef37baed9a4dcb87edcf08247a84c4b7793fe3b93fb84b6163
Contents?: true
Size: 906 Bytes
Versions: 12
Compression:
Stored size: 906 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class TruckLoading < 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: 'M2 3h1a2 2 0 0 1 2 2v10a2 2 0 0 0 2 2h15') s.path( d: 'M9 6m0 3a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-4a3 3 0 0 1 -3 -3z' ) s.path(d: 'M9 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems