Sha256: ee49606719ba56e31b223cbe52ab4d6ebf0d3dbc53325212906f2f530e9ba7b3
Contents?: true
Size: 577 Bytes
Versions: 12
Compression:
Stored size: 577 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ChevronLeft < 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' ) { |s| s.path(d: 'M15 6l-6 6l6 6') } end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems