Sha256: 97aac79b77d87e4897e2414628a53f938f636eea546277738d131fec1851814f
Contents?: true
Size: 813 Bytes
Versions: 18
Compression:
Stored size: 813 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class MessagePause < 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: 'M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6' ) s.path(d: 'M17 17v5') s.path(d: 'M21 17v5') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems