Sha256: 697b32b1895f372fe0967c6cc50adba68f5fafe58b168035d9d41408cd247ec7
Contents?: true
Size: 692 Bytes
Versions: 12
Compression:
Stored size: 692 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class FlipVertical < 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 3l0 18') s.path(d: 'M16 7l0 10l5 0l-5 -10') s.path(d: 'M8 7l0 10l-5 0l5 -10') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems