Sha256: f7b0da0a4c1d404eb642598a9e40c15db57db7ab5ac43a8afd73d7ff180ebfea
Contents?: true
Size: 735 Bytes
Versions: 18
Compression:
Stored size: 735 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowDownRightCircle < 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: 'M8.464 8.464l9.536 9.536') s.path(d: 'M14 18h4v-4') s.path(d: 'M8.414 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
18 entries across 18 versions & 2 rubygems