Sha256: 08390b85c293390cf2ab963dc0410859cfa6b1c4368278c7e014db46b3280d87
Contents?: true
Size: 786 Bytes
Versions: 18
Compression:
Stored size: 786 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class RewindBackward10 < 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: 'M7 9l-3 -3l3 -3') s.path(d: 'M15.997 17.918a6.002 6.002 0 0 0 -.997 -11.918h-11') s.path(d: 'M6 14v6') s.path(d: 'M9 15.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems