Sha256: 11668e40278134b7cc3354ebc01c4f356bfc3f1cdd168a269761575a34fc6f50
Contents?: true
Size: 737 Bytes
Versions: 18
Compression:
Stored size: 737 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowUpRightCircle < 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' ) do |s| s.path(d: 'M8.464 15.536l9.536 -9.536') s.path(d: 'M18 10v-4h-4') s.path(d: 'M8.414 15.586a2 2 0 1 0 -2.828 2.828a2 2 0 0 0 2.828 -2.828') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems