Sha256: 9e047f3f6935a2083047c36289f7147c10ac85592da53ebd0795bdbb213b4ccc

Contents?: true

Size: 741 Bytes

Versions: 3

Compression:

Stored size: 741 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class ComponentIcon < 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: "M5.5 8.5 9 12l-3.5 3.5L2 12l3.5-3.5Z")
          s.path(d: "m12 2 3.5 3.5L12 9 8.5 5.5 12 2Z")
          s.path(d: "M18.5 8.5 22 12l-3.5 3.5L15 12l3.5-3.5Z")
          s.path(d: "m12 15 3.5 3.5L12 22l-3.5-3.5L12 15Z")
        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/component_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/component_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/component_icon.rb