Sha256: 7eee30d8dcad1a20a3ca739f403fc3e5848d6e9c556f621c35423290cb5e43f0
Contents?: true
Size: 680 Bytes
Versions: 14
Compression:
Stored size: 680 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowRightDashed < 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: 'M5 12h.5m3 0h1.5m3 0h6') s.path(d: 'M13 18l6 -6') s.path(d: 'M13 6l6 6') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems