Sha256: ddbf1c9ba59826ffa34d5e1475cb4dad4ec9d2e7229f5e50a216c1542566c5c4
Contents?: true
Size: 883 Bytes
Versions: 14
Compression:
Stored size: 883 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class MessageCancel < Base def filled raise NotImplementedError end def outline 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: 'M8 9h8') s.path(d: 'M8 13h6') s.path( d: 'M11.995 18.603l-3.995 2.397v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5' ) s.path(d: 'M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') s.path(d: 'M17 21l4 -4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems