Sha256: 92d6689249c8e44801e3216063c1d6a1d4047ecbb1e8d951d4542601fb4ee4f4
Contents?: true
Size: 742 Bytes
Versions: 12
Compression:
Stored size: 742 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowDownLeftCircle < 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 8.464l-9.536 9.536') s.path(d: 'M6 14v4h4') s.path(d: 'M15.586 8.414a2 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