Sha256: d0c8b91d218affcba9cc6d79a6877211c8d252f439476f46341b74127ebb82f6
Contents?: true
Size: 848 Bytes
Versions: 14
Compression:
Stored size: 848 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BallFootball < 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: 'M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0') s.path(d: 'M12 7l4.76 3.45l-1.76 5.55h-6l-1.76 -5.55z') s.path( d: 'M12 7v-4m3 13l2.5 3m-.74 -8.55l3.74 -1.45m-11.44 7.05l-2.56 2.95m.74 -8.55l-3.74 -1.45' ) end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems