Sha256: a0ffd1fdee0c4bfb5f4d5db2adb10adb6acb96a9ac8543a37c78a08274482bb1
Contents?: true
Size: 671 Bytes
Versions: 26
Compression:
Stored size: 671 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class TimerReset < Base def view_template 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: 'M10 2h4') s.path(d: 'M12 14v-4') s.path(d: 'M4 13a8 8 0 0 1 8-7 8 8 0 1 1-5.3 14L4 17.6') s.path(d: 'M9 17H4v5') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems