Sha256: 5ab88f3e7fc19e994a963b9cf77d5c755491d81f1a37fa9335a76c01970c3d6c

Contents?: true

Size: 652 Bytes

Versions: 3

Compression:

Stored size: 652 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class CaseSensitiveIcon < 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: "m3 15 4-8 4 8")
          s.path(d: "M4 13h6")
          s.circle(cx: "18", cy: "12", r: "3")
          s.path(d: "M21 9v6")
        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/case_sensitive_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/case_sensitive_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/case_sensitive_icon.rb