Sha256: c51da7c6585116ed7fd4aeb861fe71cd2ebda7891bc8ad1f7a406e84366b1874
Contents?: true
Size: 590 Bytes
Versions: 14
Compression:
Stored size: 590 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BorderCornerSquare < 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' ) { |s| s.path(d: 'M4 20v-15a1 1 0 0 1 1 -1h15') } end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems