Sha256: 5b50dcba60c7da112a9f7fd6c2549dfa5a0d173953a0c79d10f695f90d1c65e6
Contents?: true
Size: 700 Bytes
Versions: 12
Compression:
Stored size: 700 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Upload < 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 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2') s.path(d: 'M7 9l5 -5l5 5') s.path(d: 'M12 4l0 12') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems