Sha256: 555392468fcffc9402df966f48515bc795c28dbb6de72b39542b48eb45c974ee
Contents?: true
Size: 845 Bytes
Versions: 12
Compression:
Stored size: 845 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ApiAppOff < 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: 'M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5') s.path(d: 'M15 15v3.5a2.5 2.5 0 1 1 -5 0v-.5') s.path(d: 'M13 9h5.5a2.5 2.5 0 1 1 0 5h-.5') s.path(d: 'M9 12v-3m.042 -3.957a2.5 2.5 0 0 1 4.958 .457v.5') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems