Sha256: 88a5ef058ac413c3222b296f438d460da2e044d81305b4d38bcdd7f45fad781c
Contents?: true
Size: 886 Bytes
Versions: 12
Compression:
Stored size: 886 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Forms < 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 3a3 3 0 0 0 -3 3v12a3 3 0 0 0 3 3') s.path(d: 'M6 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3') s.path(d: 'M13 7h7a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-7') s.path(d: 'M5 7h-1a1 1 0 0 0 -1 1v8a1 1 0 0 0 1 1h1') s.path(d: 'M17 12h.01') s.path(d: 'M13 12h.01') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems