Sha256: 12cf28f8b1cf3ae26c558b2a87664d58ab9709d426c1a5ca8a419504a2d25b4f
Contents?: true
Size: 707 Bytes
Versions: 18
Compression:
Stored size: 707 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BracketsContainEnd < 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: 'M14 4h4v16h-4') s.path(d: 'M5 16h.01') s.path(d: 'M9 16h.01') s.path(d: 'M13 16h.01') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems