Sha256: daa004664ca446e0b2d7fb682d71ac47b91fc7494f0a50c23a95ba7de2156d56
Contents?: true
Size: 843 Bytes
Versions: 12
Compression:
Stored size: 843 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class WorldMinus < 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.483 15.006a9 9 0 1 0 -7.958 5.978') s.path(d: 'M3.6 9h16.8') s.path(d: 'M3.6 15h16.8') s.path(d: 'M11.5 3a17 17 0 0 0 0 18') s.path(d: 'M12.5 3a16.94 16.94 0 0 1 2.307 12') s.path(d: 'M16 19h6') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems