Sha256: c4ecd5cb63c895749c2738bae5d76b70f964409b6f5636f7406adcb55f98b970
Contents?: true
Size: 945 Bytes
Versions: 18
Compression:
Stored size: 945 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class BorderStyle2 < 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 18v.01') s.path(d: 'M8 18v.01') s.path(d: 'M12 18v.01') s.path(d: 'M16 18v.01') s.path(d: 'M20 18v.01') s.path(d: 'M18 12h2') s.path(d: 'M11 12h2') s.path(d: 'M4 12h2') s.path(d: 'M4 6h16') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
18 entries across 18 versions & 2 rubygems