Sha256: 5e79468c5cf981e496fa376c56b4c1b5d5de3291e9e5fa7173dc62418f46554a
Contents?: true
Size: 687 Bytes
Versions: 14
Compression:
Stored size: 687 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BorderSides < 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' ) do |s| s.path(d: 'M4 8v8') s.path(d: 'M20 16v-8') s.path(d: 'M8 4h8') s.path(d: 'M8 20h8') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems