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