Sha256: 5bd07f498c20de56a9b45022fd1230ff35b4a5b240cb45130eaee6e64370ddb4
Contents?: true
Size: 811 Bytes
Versions: 18
Compression:
Stored size: 811 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class MessageMinus < 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.976 18.614l-3.976 2.386v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8' ) s.path(d: 'M16 19h6') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems