Sha256: 27bbfd602bb9af11eddad79d3bd45756e2d708207bc5e600dfe1094cc5e02ba1
Contents?: true
Size: 685 Bytes
Versions: 10
Compression:
Stored size: 685 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowRightSquare < 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: 'M7 12l14 0') s.path(d: 'M18 15l3 -3l-3 -3') s.path(d: 'M3 10h4v4h-4z') end end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems