Sha256: c49b69aeb63160934646f3d68cf99aa08d96f5a3da32e6b6ee7d2ab4bd0566b4
Contents?: true
Size: 739 Bytes
Versions: 12
Compression:
Stored size: 739 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Send < 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: 'M10 14l11 -11') s.path( d: 'M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems