Sha256: b9e3590682e17717ddee79411967893a68c17725feed32f095f88b247d5e81b5
Contents?: true
Size: 916 Bytes
Versions: 14
Compression:
Stored size: 916 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BallAmericanFootball < 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: 'M15 9l-6 6') s.path(d: 'M10 12l2 2') s.path(d: 'M12 10l2 2') s.path(d: 'M8 21a5 5 0 0 0 -5 -5') s.path( d: 'M16 3c-7.18 0 -13 5.82 -13 13a5 5 0 0 0 5 5c7.18 0 13 -5.82 13 -13a5 5 0 0 0 -5 -5' ) s.path(d: 'M16 3a5 5 0 0 0 5 5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems