Sha256: 591dd11f42a71b1dd16e036c3033c0d6d7c1a003fe0a954ab1817d4856c294ec
Contents?: true
Size: 687 Bytes
Versions: 12
Compression:
Stored size: 687 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowUpToArc < 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: 'M12 21v-12') s.path(d: 'M8 13l4 -4l4 4') s.path(d: 'M21 12a9 9 0 0 0 -18 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems