Sha256: c58cd626f9163e5552db7dde839e7c62098620e02f634328a415f5b42d4c2047
Contents?: true
Size: 1.1 KB
Versions: 12
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class BorderTopPlus < 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: 'M4 4h16') s.path(d: 'M4 8v.01') s.path(d: 'M20 8v.01') s.path(d: 'M4 12v.01') s.path(d: 'M20 12v.01') s.path(d: 'M4 16v.01') s.path(d: 'M15 12h-6') s.path(d: 'M12 9v6') s.path(d: 'M20 16v.01') s.path(d: 'M4 20v.01') s.path(d: 'M8 20v.01') s.path(d: 'M12 20v.01') s.path(d: 'M16 20v.01') s.path(d: 'M20 20v.01') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
12 entries across 12 versions & 2 rubygems