Sha256: 1dee3cdfa286a688443331cdac47b42346bda049057e69710cd7793b32b98838
Contents?: true
Size: 1.07 KB
Versions: 12
Compression:
Stored size: 1.07 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class TopologyFull < 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 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z') s.path(d: 'M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z') s.path(d: 'M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z') s.path(d: 'M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z') s.path(d: 'M6 8v8') s.path(d: 'M18 16v-8') s.path(d: 'M8 6h8') s.path(d: 'M16 18h-8') s.path(d: 'M7.5 7.5l9 9') s.path(d: 'M7.5 16.5l9 -9') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
12 entries across 12 versions & 2 rubygems