Sha256: e24389997abdba560f85c0f5b9084bae9fe15b373fa2b026e7457f7ee8417717
Contents?: true
Size: 509 Bytes
Versions: 14
Compression:
Stored size: 509 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Bootstrap class BorderAll < Base def view_template svg( **attrs, xmlns: 'http://www.w3.org/2000/svg', fill: 'currentColor', viewbox: '0 0 16 16' ) do |s| s.path( d: 'M0 0h16v16H0zm1 1v6.5h6.5V1zm7.5 0v6.5H15V1zM15 8.5H8.5V15H15zM7.5 15V8.5H1V15z' ) end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems