Sha256: 287d3b4f6c6928156544767659551551846b0c8283b268b8b38f36e3d3dd0532
Contents?: true
Size: 895 Bytes
Versions: 12
Compression:
Stored size: 895 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class WorldCode < 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.942 13.02a9 9 0 1 0 -9.47 7.964') s.path(d: 'M3.6 9h16.8') s.path(d: 'M3.6 15h9.9') s.path(d: 'M11.5 3a17 17 0 0 0 0 18') s.path(d: 'M12.5 3c2 3.206 2.837 6.913 2.508 10.537') s.path(d: 'M20 21l2 -2l-2 -2') s.path(d: 'M17 17l-2 2l2 2') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems