Sha256: 2272ff8feb7d7cf14e6dc8fe481f65f37f10c3865777e23823dd9e343f94311c
Contents?: true
Size: 703 Bytes
Versions: 10
Compression:
Stored size: 703 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowUpCircle < 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 17v-14') s.path(d: 'M15 6l-3 -3l-3 3') s.path(d: 'M12 17a2 2 0 1 0 0 4a2 2 0 0 0 0 -4') end end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems