Sha256: 7764142598fc6776d1c96b4afca9acebf7e8b5eb3e18d83f0d4f78b843e029cd
Contents?: true
Size: 877 Bytes
Versions: 18
Compression:
Stored size: 877 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencyOff < 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: 'M18.531 14.524a7 7 0 0 0 -9.06 -9.053m-2.422 1.582a7 7 0 0 0 9.903 9.896' ) s.path(d: 'M4 4l3 3') s.path(d: 'M20 4l-3 3') s.path(d: 'M4 20l3 -3') s.path(d: 'M20 20l-3 -3') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems