Sha256: 3e8cd8a8dafc570090cef2801dff784676dc7d41d257565919c5a2c3f33ddb10
Contents?: true
Size: 724 Bytes
Versions: 14
Compression:
Stored size: 724 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowCurveRight < 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: 'M10 7l4 -4l4 4') s.path( d: 'M14 3v4.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v2.394' ) end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems