Sha256: 00bcef4e4f23a1e2d6e9cbff329519eaeaced8ddc0e91b80467e310a24dfb349
Contents?: true
Size: 1.39 KB
Versions: 12
Compression:
Stored size: 1.39 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/AbcSize,Metrics/MethodLength module Phlex module Icons module Tabler class VirusSearch < 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: 'M17 12a5 5 0 1 0 -5 5') s.path(d: 'M12 7v-4') s.path(d: 'M11 3h2') s.path(d: 'M15.536 8.464l2.828 -2.828') s.path(d: 'M17.657 4.929l1.414 1.414') s.path(d: 'M17 12h4') s.path(d: 'M21 11v2') s.path(d: 'M12 17v4') s.path(d: 'M13 21h-2') s.path(d: 'M8.465 15.536l-2.829 2.828') s.path(d: 'M6.343 19.071l-1.413 -1.414') s.path(d: 'M7 12h-4') s.path(d: 'M3 13v-2') s.path(d: 'M8.464 8.464l-2.828 -2.828') s.path(d: 'M4.929 6.343l1.414 -1.413') s.path(d: 'M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0') s.path(d: 'M19.5 19.5l2.5 2.5') end end end end end end # rubocop:enable Metrics/AbcSize,Metrics/MethodLength
Version data entries
12 entries across 12 versions & 2 rubygems