Sha256: b00b40c9292012c3179f546b87c40256188092630aadc7ae51d407e0e855eb3c
Contents?: true
Size: 791 Bytes
Versions: 18
Compression:
Stored size: 791 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class MessageForward < 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: 'M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z' ) s.path(d: 'M13 8l3 3l-3 3') s.path(d: 'M16 11h-8') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems