Sha256: 5a3a17c9f412ee9e2b210f6287b1f5b51bd661e4882129ae7cd1fadeadf7b2ba
Contents?: true
Size: 710 Bytes
Versions: 14
Compression:
Stored size: 710 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowsDoubleNwSe < 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 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
14 entries across 14 versions & 2 rubygems