Sha256: e55bbe0831c22955a5eeaf11c3adb1408904e48168ec18c38ce55a8d9a3ba939
Contents?: true
Size: 581 Bytes
Versions: 18
Compression:
Stored size: 581 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class RadiusTopRight < 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: 'M5 5h6a8 8 0 0 1 8 8v6') } end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems