Sha256: 3bd02ba46da750018de997626daa4c0929f19ba4fc86f54712ac9b227bf3404b
Contents?: true
Size: 784 Bytes
Versions: 12
Compression:
Stored size: 784 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Tank < 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 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z' ) s.path(d: 'M6 12l1 -5h5l3 5') s.path(d: 'M21 9l-7.8 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems