Sha256: 18a51be6b611f11ef6fd8c8d5646b2c885a9c6c2afb28001ebf972b6a1987145
Contents?: true
Size: 714 Bytes
Versions: 12
Compression:
Stored size: 714 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowAutofitDown < 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 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8') s.path(d: 'M18 4v17') s.path(d: 'M15 18l3 3l3 -3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems