Sha256: f59a0fa56bb836f610a4896111fc09692a8d6b15841abdcd8580f93050eeabb0
Contents?: true
Size: 1.11 KB
Versions: 14
Compression:
Stored size: 1.11 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class GoGame < 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: 'M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M3 12h7m4 0h7') s.path(d: 'M3 6h1m4 0h13') s.path(d: 'M3 18h1m4 0h8m4 0h1') s.path(d: 'M6 3v1m0 4v8m0 4v1') s.path(d: 'M12 3v7m0 4v7') s.path(d: 'M18 3v13m0 4v1') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
14 entries across 14 versions & 2 rubygems