Sha256: 2499ecb1d1f6c2766d974f5239374e6e56a3dfad253e5495c1d26d54146379f8
Contents?: true
Size: 807 Bytes
Versions: 14
Compression:
Stored size: 807 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Message2Check < 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: 'M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6' ) s.path(d: 'M15 19l2 2l4 -4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems