Sha256: 79c0076dd53408e0af5c163a2c526966af15420920337d511156c83e22085e94

Contents?: true

Size: 815 Bytes

Versions: 2

Compression:

Stored size: 815 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class MessageSquareDashedIcon < 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 6V5c0-1.1.9-2 2-2h2")
          s.path(d: "M11 3h3")
          s.path(d: "M18 3h1c1.1 0 2 .9 2 2")
          s.path(d: "M21 9v2")
          s.path(d: "M21 15c0 1.1-.9 2-2 2h-1")
          s.path(d: "M14 17h-3")
          s.path(d: "m7 17-4 4v-5")
          s.path(d: "M3 12v-2")
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

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