Sha256: 81afd16b7f2897f4cc0245101f9972d6db384deb0c8795e0edb28737deb99c14
Contents?: true
Size: 730 Bytes
Versions: 14
Compression:
Stored size: 730 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ClockDown < 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: 'M20.984 12.535a9 9 0 1 0 -8.431 8.448') s.path(d: 'M12 7v5l3 3') s.path(d: 'M19 16v6') s.path(d: 'M22 19l-3 3l-3 -3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems