Sha256: bc9b699ead23a43c8e272d3f5a1c9aa5c5f208b30161a022d875940360d85606
Contents?: true
Size: 634 Bytes
Versions: 12
Compression:
Stored size: 634 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Terminal < Base def filled raise NotImplementedError end def outline svg( class: classes, 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: 'M5 7l5 5l-5 5') s.path(d: 'M12 19l7 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems