Sha256: 70fe6b9e4f258498f91f464a14e8d47b389aa3174c24b86181c1245b65c205bc
Contents?: true
Size: 735 Bytes
Versions: 18
Compression:
Stored size: 735 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowRotaryRight < 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: 'M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') s.path(d: 'M8 10v10') s.path(d: 'M17 11l4 -4l-4 -4') s.path(d: 'M11 7h10') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems