Sha256: 475b02c7c0a132ec975674f7f62c36b03d87672ed8c25311875ab942eff126e3
Contents?: true
Size: 968 Bytes
Versions: 12
Compression:
Stored size: 968 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class TopologyRing < 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: 'M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z') s.path(d: 'M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z') s.path(d: 'M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z') s.path(d: 'M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z') s.path(d: 'M13.5 5.5l5 5') s.path(d: 'M5.5 13.5l5 5') s.path(d: 'M13.5 18.5l5 -5') s.path(d: 'M10.5 5.5l-5 5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems