Sha256: b76b90c058e11c9dfc1db595f8d00b0c3d3126e7f200a4173a8abdf9e7c0da54
Contents?: true
Size: 805 Bytes
Versions: 14
Compression:
Stored size: 805 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class AntennaOff < Base def filled raise NotImplementedError end def outline svg( **attrs, 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: 'M20 4v8') s.path(d: 'M16 4.5v7') s.path(d: 'M12 5v3m0 4v9') s.path(d: 'M8 8v2.5') s.path(d: 'M4 6v4') s.path(d: 'M20 8h-8m-4 0h-4') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems