Sha256: bcf63248eb0d47b2a86ea8db18dff6f6e4e03d7e9d5c49ce28d242859ade80a3
Contents?: true
Size: 684 Bytes
Versions: 14
Compression:
Stored size: 684 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowNarrowLeftDashed < 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 12h6m3 0h1.5m3 0h.5') s.path(d: 'M5 12l4 4') s.path(d: 'M5 12l4 -4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems