Sha256: 9638bc8a7bc04e22d317fdf4e356f15fe04d8d0beeda73e1e34de04de9b8dcb8
Contents?: true
Size: 768 Bytes
Versions: 12
Compression:
Stored size: 768 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BorderCorners < Base def filled raise NotImplementedError end def outline 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 4h2a2 2 0 0 1 2 2v2') s.path(d: 'M20 16v2a2 2 0 0 1 -2 2h-2') s.path(d: 'M8 20h-2a2 2 0 0 1 -2 -2v-2') s.path(d: 'M4 8v-2a2 2 0 0 1 2 -2h2') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems