Sha256: 9b4e64a820155902a8de6c1e15bc5539d8392a106310751ab0781ec28041f6fd
Contents?: true
Size: 701 Bytes
Versions: 10
Compression:
Stored size: 701 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowMoveRight < 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: 'M11 12h10') s.path(d: 'M18 9l3 3l-3 3') s.path(d: 'M7 12a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z') end end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems