Sha256: f1dc072b7bf089b12fc1f7671e1cfe5cc16d2c94896273d12c9cb5c57116f3aa
Contents?: true
Size: 843 Bytes
Versions: 18
Compression:
Stored size: 843 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Message2Exclamation < 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: 'M15 18l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5' ) s.path(d: 'M19 16v3') s.path(d: 'M19 22v.01') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems