Sha256: 1c727dd1e47970d6eaaa5618008be5695ee57fd51fa6cd09623afb87b8f01aa1
Contents?: true
Size: 684 Bytes
Versions: 18
Compression:
Stored size: 684 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowDownFromArc < 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: 'M12 15v-12') s.path(d: 'M16 7l-4 -4l-4 4') s.path(d: 'M3 12a9 9 0 0 0 18 0') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems