Sha256: 34579e335aa6c9ddc62463820c8eb8bba02cb15a3b4c620c2d07c38b2852bc8d
Contents?: true
Size: 742 Bytes
Versions: 12
Compression:
Stored size: 742 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowRotaryStraight < 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: 'M13 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') s.path(d: 'M13 16v5') s.path(d: 'M13 3v7') s.path(d: 'M9 7l4 -4l4 4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems