Sha256: 82026b7856056f58da9a48e20d6f6d6002c1ec5b0018f3204a2c070b4e54413a
Contents?: true
Size: 739 Bytes
Versions: 12
Compression:
Stored size: 739 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LineDotted < 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 12v.01') s.path(d: 'M8 12v.01') s.path(d: 'M12 12v.01') s.path(d: 'M16 12v.01') s.path(d: 'M20 12v.01') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems