Sha256: 5b483cccf98e7f08c0cc34245ab34e8680c8786a8bc0e71b34d78cc4f0ebc913
Contents?: true
Size: 1.1 KB
Versions: 18
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class BorderLeftPlus < 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 20v-16') 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: 'M20 8v.01') s.path(d: 'M20 12v.01') s.path(d: 'M20 16v.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') s.path(d: 'M9 12h6') s.path(d: 'M12 9v6') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
18 entries across 18 versions & 2 rubygems