Sha256: 06582bbf052d60bf658eb12da8a4490a9fd9a48de9b292dca4b71a5426cfccc0
Contents?: true
Size: 750 Bytes
Versions: 12
Compression:
Stored size: 750 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Api < 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: 'M4 13h5') s.path(d: 'M12 16v-8h3a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-3') s.path(d: 'M20 8v8') s.path(d: 'M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems