Sha256: 4a4489c3d8c0deba55a52966445ecfb8322f5d4f4b9670b4115b559e53b2fff9
Contents?: true
Size: 837 Bytes
Versions: 12
Compression:
Stored size: 837 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class RewindBackward30 < 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: 'M19.007 16.466a6 6 0 0 0 -4.007 -10.466h-11') s.path(d: 'M12 15.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z') s.path(d: 'M6 14h1.5a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1.5') s.path(d: 'M7 9l-3 -3l3 -3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems