Sha256: 72b59eddc8a4c20b764d3a8dfc2fd2318ff0e7d665ef0fc784804d3e8ad8eb09
Contents?: true
Size: 598 Bytes
Versions: 14
Compression:
Stored size: 598 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CornerDownRight < 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' ) { |s| s.path(d: 'M6 6v6a3 3 0 0 0 3 3h10l-4 -4m0 8l4 -4') } end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems