Sha256: 2d5685c979f58678611bac2219ddf1021bb2886bcedd0b5d6320cfa50dfdbb4e
Contents?: true
Size: 820 Bytes
Versions: 12
Compression:
Stored size: 820 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Spy < 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: 'M3 11h18') s.path(d: 'M5 11v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4') s.path(d: 'M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') s.path(d: 'M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') s.path(d: 'M10 17h4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems