Sha256: eed66031cd4350492380469c5abe327bf54f7744b7e1f20935de0a9c021eecb7
Contents?: true
Size: 574 Bytes
Versions: 12
Compression:
Stored size: 574 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ChevronUpRight < 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' ) { |s| s.path(d: 'M8 8h8v8') } end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems