Sha256: 4a82a21f2398bb76aef82816176d8c73b2afe4daa2fc74917f1a7e4332bcfa43
Contents?: true
Size: 690 Bytes
Versions: 18
Compression:
Stored size: 690 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class AlignRight2 < 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: 'M20 4v16') s.path(d: 'M4 6h12') s.path(d: 'M10 12h6') s.path(d: 'M6 18h10') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems