Sha256: c498f6f8c74ac6d877430ffdef25670d3638ef46eaf72b669e3bc22ab2105a70
Contents?: true
Size: 914 Bytes
Versions: 12
Compression:
Stored size: 914 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ViewfinderOff < 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: 'M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08' ) s.path(d: 'M12 3v4') s.path(d: 'M12 21v-3') s.path(d: 'M3 12h4') s.path(d: 'M21 12h-3') s.path(d: 'M12 12v.01') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems