Sha256: 63a89456592405859e40bd10d0b0e4bcde43d07d6fd9f0f7ae5e7cac8eaf3c6b
Contents?: true
Size: 827 Bytes
Versions: 14
Compression:
Stored size: 827 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ChartArrowsVertical < Base def filled raise NotImplementedError end def outline svg( **attrs, 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: 'M18 21v-14') s.path(d: 'M9 15l3 -3l3 3') s.path(d: 'M15 10l3 -3l3 3') s.path(d: 'M3 21l18 0') s.path(d: 'M12 21l0 -9') s.path(d: 'M3 6l3 -3l3 3') s.path(d: 'M6 21v-18') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems