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