Sha256: 5566c7a26b419d32813d09fd32ee04715a539cd11f679e935ee19e3e7ae359fb
Contents?: true
Size: 1.11 KB
Versions: 12
Compression:
Stored size: 1.11 KB
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BallFootballOff < 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: 'M20.041 16.046a9 9 0 0 0 -12.084 -12.09m-2.323 1.683a9 9 0 0 0 12.726 12.73' ) s.path( d: 'M12 7l4.755 3.455l-.566 1.743l-.98 3.014l-.209 .788h-6l-1.755 -5.545l1.86 -1.351l2.313 -1.681z' ) s.path(d: 'M12 7v-4') s.path(d: 'M15 16l2.5 3') s.path(d: 'M16.755 10.455l3.745 -1.455') s.path(d: 'M9.061 16.045l-2.561 2.955') s.path(d: 'M7.245 10.455l-3.745 -1.455') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems