Sha256: 60e80a6451389dfcede9970dc5f4e886512ce81a68367badfa5e112b8b5b1271
Contents?: true
Size: 744 Bytes
Versions: 12
Compression:
Stored size: 744 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowUpLeftCircle < 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: 'M15.536 15.536l-9.536 -9.536') s.path(d: 'M10 6h-4v4') s.path(d: 'M15.586 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
12 entries across 12 versions & 2 rubygems