Sha256: 9718d60961da4dc25d461eeed9b1f019964b57db67381a43007123ff11261675

Contents?: true

Size: 763 Bytes

Versions: 3

Compression:

Stored size: 763 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class AlarmClockPlusIcon < Phlex::Lucide::Icon
      def view_template
        svg(
          xmlns: "http://www.w3.org/2000/svg",
          width: size,
          height: size,
          viewbox: "0 0 24 24",
          fill: "none",
          stroke: "currentColor",
          stroke_width: "2",
          stroke_linecap: "round",
          stroke_linejoin: "round",
          **props
        ) 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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
phlex-lucide-0.428.0 lib/phlex/lucide/icons/alarm_clock_plus_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/alarm_clock_plus_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/alarm_clock_plus_icon.rb