Sha256: c2d6851f1a397aebf50f7e71f12a477f4c45946eedfde3b4716169e2483ba9bb
Contents?: true
Size: 648 Bytes
Versions: 3
Compression:
Stored size: 648 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class MessageSquareShareIcon < 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: "M21 12v3a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h7") s.path(d: "M16 3h5v5") s.path(d: "m16 8 5-5") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems