Sha256: 4008aa9103789bfc7ba7c37652da7b41d238602d943f49c395d4b6cc2b0b8563
Contents?: true
Size: 719 Bytes
Versions: 12
Compression:
Stored size: 719 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowsDown < 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: 'M7 21l0 -18') s.path(d: 'M20 18l-3 3l-3 -3') s.path(d: 'M4 18l3 3l3 -3') s.path(d: 'M17 21l0 -18') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems