Sha256: a21a0b4bee1cd34b946ade48a96bf4c869970a266da2f26ed866c2051651e718
Contents?: true
Size: 843 Bytes
Versions: 14
Compression:
Stored size: 843 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class PlayFootball < Base def filled raise NotImplementedError end def outline svg( **attrs, 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: 'M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0') s.path(d: 'M3 17l5 1l.75 -1.5') s.path(d: 'M14 21v-4l-4 -3l1 -6') s.path(d: 'M6 12v-3l5 -1l3 3l3 1') s.path(d: 'M19.5 20a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z', fill: 'currentColor') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems