Sha256: 8d84c34ddbbce7c6cab961119e45fff403317064aada67faf2d264130a242882
Contents?: true
Size: 568 Bytes
Versions: 14
Compression:
Stored size: 568 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ChevronDownLeft < 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' ) { |s| s.path(d: 'M8 8v8h8') } end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems