Sha256: 82bcbd690c723e475be3470cc5127ec0a5b392fe6c1b2a20a5f6a9b85d0f1f6b
Contents?: true
Size: 757 Bytes
Versions: 12
Compression:
Stored size: 757 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Torii < 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: 'M4 4c5.333 1.333 10.667 1.333 16 0') s.path(d: 'M4 8h16') s.path(d: 'M12 5v3') s.path(d: 'M18 4.5v15.5') s.path(d: 'M6 4.5v15.5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems