Sha256: c01d8b7a776dbaa4caddba00e171aac82081d6af3005957bda2fe7ad43704bb1
Contents?: true
Size: 735 Bytes
Versions: 14
Compression:
Stored size: 735 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowDownLeftCircle < 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: '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
14 entries across 14 versions & 2 rubygems