Sha256: c4d24d5ee49d2c281884a383307d7eb0c8fad791c7de74b55fd284d5ca7bec9a

Contents?: true

Size: 776 Bytes

Versions: 3

Compression:

Stored size: 776 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class CalendarSearchIcon < 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.path(d: "M16 2v4")
          s.path(d: "M21 11.75V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.25")
          s.path(d: "m22 22-1.875-1.875")
          s.path(d: "M3 10h18")
          s.path(d: "M8 2v4")
          s.circle(cx: "18", cy: "18", r: "3")
        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/calendar_search_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/calendar_search_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/calendar_search_icon.rb