Sha256: 3fff31f7af02ae2ee8676a35c2445c2a79c4fb1d99335db2602ffe05b4330505
Contents?: true
Size: 674 Bytes
Versions: 14
Compression:
Stored size: 674 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowSharpTurnRight < 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: 'M7 18v-11.31a.7 .7 0 0 1 1.195 -.495l9.805 9.805') s.path(d: 'M13 16h5v-5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems