Sha256: daa30ccfe93a96d507678cc21fd5287423f01b1d52b36a94beb25d061d593587
Contents?: true
Size: 653 Bytes
Versions: 14
Compression:
Stored size: 653 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ClearAll < 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: 'M8 6h12') s.path(d: 'M6 12h12') s.path(d: 'M4 18h12') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems