Sha256: 0667ce147cefd84573abb63cb913772dfea267f985f0c4e6f5b2a4c0a0112db7
Contents?: true
Size: 705 Bytes
Versions: 12
Compression:
Stored size: 705 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowsUpRight < 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: 'M17 21l4 -4l-4 -4') s.path(d: 'M21 17h-11a3 3 0 0 1 -3 -3v-11') s.path(d: 'M11 7l-4 -4l-4 4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems