Sha256: b4b0ee6885db41e6edee7fde9a3653f4e59b0151a40c51abc9bc051f47cd3fd2
Contents?: true
Size: 621 Bytes
Versions: 14
Compression:
Stored size: 621 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class MessageCircleX < Base def view_template svg( **attrs, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'none', stroke: 'currentColor', stroke_width: '2', stroke_linecap: 'round', stroke_linejoin: 'round' ) do |s| s.path(d: 'M7.9 20A9 9 0 1 0 4 16.1L2 22Z') s.path(d: 'm15 9-6 6') s.path(d: 'm9 9 6 6') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems