Sha256: e77a2d69fdd55a5888c093a660c714260760cca848c82f2c9a0d24325215d4bc
Contents?: true
Size: 789 Bytes
Versions: 12
Compression:
Stored size: 789 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ApiApp < 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 12v6.5a2.5 2.5 0 1 1 -5 0v-.5') s.path(d: 'M12 9h6.5a2.5 2.5 0 1 1 0 5h-.5') s.path(d: 'M9 12v-6.5a2.5 2.5 0 0 1 5 0v.5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems