Sha256: b82546609d585e5cd3c2dae104d3a4c2328726c9261d61d1d3d4c1ff8821a6fc
Contents?: true
Size: 757 Bytes
Versions: 12
Compression:
Stored size: 757 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ShieldChevron < 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: 'M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3' ) s.path(d: 'M4 14l8 -3l8 3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems