Sha256: 5d7323f83a6c631608ab68aadc99a68fba49823e81860a8d5882700ff6d74d8d
Contents?: true
Size: 840 Bytes
Versions: 12
Compression:
Stored size: 840 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class AccessPointOff < 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 3l18 18') s.path(d: 'M14.828 9.172a4 4 0 0 1 1.172 2.828') s.path(d: 'M17.657 6.343a8 8 0 0 1 1.635 8.952') s.path(d: 'M9.168 14.828a4 4 0 0 1 0 -5.656') s.path(d: 'M6.337 17.657a8 8 0 0 1 0 -11.314') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems