Sha256: 10732a9945c5257bd9102407cfb0088765118fe6f62050a8f128e3c2a6a01406
Contents?: true
Size: 786 Bytes
Versions: 12
Compression:
Stored size: 786 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class WashDryShade < 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: '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
12 entries across 12 versions & 2 rubygems