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