Sha256: 1c6b34669d598d1db30d4eb1124a5ec495d4870ce2dce6bfa1269152650827b6
Contents?: true
Size: 779 Bytes
Versions: 14
Compression:
Stored size: 779 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class WashDryShade < 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: 'M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z' ) s.path(d: 'M3 11l8 -8') s.path(d: 'M3 17l14 -14') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems