Sha256: e42890e83aa6ca25729702a2c157fee97103c9ffc7c71ec0ac2a0f4a91218d23
Contents?: true
Size: 739 Bytes
Versions: 26
Compression:
Stored size: 739 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class TimerOff < 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: 'M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7') s.path(d: 'M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2') s.path(d: 'm2 2 20 20') s.path(d: 'M12 12v-2') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems