Sha256: a54db9b336b4b9a406db83dc2391970391d26d605830f5fc5e0b16310132f5c0
Contents?: true
Size: 517 Bytes
Versions: 14
Compression:
Stored size: 517 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class FlagTriangleRight < Base def view_template 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: 'M7 22V2l10 5-10 5') } end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems