Sha256: d8291ec6931d19a22ff551e5ae0b947581b3553e1cc231a8a8a12cb33da3047c
Contents?: true
Size: 717 Bytes
Versions: 12
Compression:
Stored size: 717 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowsDoubleNwSe < Base def filled raise NotImplementedError end def outline svg( class: classes, 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 21l-11 -11') s.path(d: 'M3 14v-4h4') s.path(d: 'M17 14h4v-4') s.path(d: 'M10 3l11 11') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems