Sha256: 0841478abc5fcf08b07d11bb449cf4a460feb48fcba8a7c37cb124ec01457224

Contents?: true

Size: 718 Bytes

Versions: 3

Compression:

Stored size: 718 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class HashIcon < 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.line(x1: "4", x2: "20", y1: "9", y2: "9")
          s.line(x1: "4", x2: "20", y1: "15", y2: "15")
          s.line(x1: "10", x2: "8", y1: "3", y2: "21")
          s.line(x1: "16", x2: "14", y1: "3", y2: "21")
        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/hash_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/hash_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/hash_icon.rb