Sha256: ef81ebf965d67c1c5bd731bb5d1e224dab83191dd1c5789218421d627efb257d
Contents?: true
Size: 722 Bytes
Versions: 12
Compression:
Stored size: 722 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ExternalLink < 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: 'M12 6h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-6') s.path(d: 'M11 13l9 -9') s.path(d: 'M15 4h5v5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems