Sha256: 88943fb0f50a96dbd4c565591d8c49a711034e23b05844e2236f5311f5b595a4
Contents?: true
Size: 1.27 KB
Versions: 14
Compression:
Stored size: 1.27 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/AbcSize,Metrics/MethodLength module Phlex module Icons module Tabler class BorderTop < 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 4l16 0') s.path(d: 'M4 8l0 .01') s.path(d: 'M12 8l0 .01') s.path(d: 'M20 8l0 .01') s.path(d: 'M4 12l0 .01') s.path(d: 'M8 12l0 .01') s.path(d: 'M12 12l0 .01') s.path(d: 'M16 12l0 .01') s.path(d: 'M20 12l0 .01') s.path(d: 'M4 16l0 .01') s.path(d: 'M12 16l0 .01') s.path(d: 'M20 16l0 .01') s.path(d: 'M4 20l0 .01') s.path(d: 'M8 20l0 .01') s.path(d: 'M12 20l0 .01') s.path(d: 'M16 20l0 .01') s.path(d: 'M20 20l0 .01') end end end end end end # rubocop:enable Metrics/AbcSize,Metrics/MethodLength
Version data entries
14 entries across 14 versions & 2 rubygems