Sha256: fce1191838aa2c44d1a34563f09cbea835f1a12e489cf12450cb791cda267aee
Contents?: true
Size: 724 Bytes
Versions: 12
Compression:
Stored size: 724 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class TextWrapColumn < 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 9h7a3 3 0 0 1 0 6h-4l2 -2') s.path(d: 'M12 17l-2 -2') s.path(d: 'M3 3v18') s.path(d: 'M21 3v18') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems