Sha256: 5e6277917fe4448e98366e05f300ebd9d4296e4eda4f1d86abc1ca403a0f596b
Contents?: true
Size: 573 Bytes
Versions: 26
Compression:
Stored size: 573 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Brackets < Base def view_template 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: 'M16 3h3v18h-3') s.path(d: 'M8 21H5V3h3') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems