Sha256: 79e8b71230b1fa51a7717c420df6ac9dbe7b0b0c64829e04535df1338f3dacef
Contents?: true
Size: 755 Bytes
Versions: 12
Compression:
Stored size: 755 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ShirtSport < 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: 'M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0' ) s.path(d: 'M10.5 11h2.5l-1.5 5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems