Sha256: ec375e1814543e7531778e6b6afc61ba31d881f4a23267ec41cdff0733d88133
Contents?: true
Size: 665 Bytes
Versions: 3
Compression:
Stored size: 665 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class MessageSquareXIcon < 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 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z") s.path(d: "m14.5 7.5-5 5") s.path(d: "m9.5 7.5 5 5") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems