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