Sha256: bd18a6b9aba873d018cfdf4848d8960280329852b3241f746fdd198b1c5c054e
Contents?: true
Size: 765 Bytes
Versions: 12
Compression:
Stored size: 765 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class RefreshAlert < 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: 'M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4') s.path(d: 'M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4') s.path(d: 'M12 9l0 3') s.path(d: 'M12 15l.01 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems