Sha256: 6589424a1f0daa94a821ff0265a38d8c95fb24601a04b6ddbb1a7bc35eaa2b00
Contents?: true
Size: 685 Bytes
Versions: 10
Compression:
Stored size: 685 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowNarrowDownDashed < 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: 'M12 5v.5m0 3v1.5m0 3v6') s.path(d: 'M16 15l-4 4') s.path(d: 'M8 15l4 4') end end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems