Sha256: 6447648ea1e5c22e83d34e40629fc981ca25db59a6b5985ba33e8ce33609f8aa
Contents?: true
Size: 859 Bytes
Versions: 14
Compression:
Stored size: 859 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ApiOff < 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: 'M4 13h5') s.path( d: 'M12 16v-4m0 -4h3a2 2 0 0 1 2 2v1c0 .554 -.225 1.055 -.589 1.417m-3.411 .583h-1' ) s.path(d: 'M20 8v8') s.path(d: 'M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems