Sha256: 0a07829df934dd12eea23c57926a64abe93d193de98d1e0a6344d53342eda454
Contents?: true
Size: 1.25 KB
Versions: 12
Compression:
Stored size: 1.25 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class TopologyStar3 < 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: 'M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z') s.path(d: 'M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z') s.path(d: 'M10 5a2 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: 'M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z') s.path(d: 'M14 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: 'M6 12h4') s.path(d: 'M14 12h4') s.path(d: 'M15 7l-2 3') s.path(d: 'M9 7l2 3') s.path(d: 'M11 14l-2 3') s.path(d: 'M13 14l2 3') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
12 entries across 12 versions & 2 rubygems