Sha256: f48ec9401bc7febfebee08244f90b5fb0db01a3427beacfa94fb8a6bb86490db
Contents?: true
Size: 766 Bytes
Versions: 14
Compression:
Stored size: 766 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class AlarmClockPlus < 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: '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') s.path(d: 'M12 10v6') s.path(d: 'M9 13h6') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems