Sha256: 164a1732b054163cbbe6f97b063c2bfaa7fa21bb7f1a2f9235a6a909922bcb8f
Contents?: true
Size: 732 Bytes
Versions: 18
Compression:
Stored size: 732 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class AlarmClock < Base def view_template 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.circle(cx: '12', cy: '13', r: '8') s.path(d: 'M12 9v4l2 2') s.path(d: 'M5 3 2 6') s.path(d: 'm22 6-3-3') s.path(d: 'M6.38 18.7 4 21') s.path(d: 'M17.64 18.67 20 21') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems