Sha256: df9d5a2787c3bc083a770a1b8946c04df81dc1623d944a65fe0d86480a08837c
Contents?: true
Size: 626 Bytes
Versions: 14
Compression:
Stored size: 626 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Flag < 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' ) do |s| s.path(d: 'M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z') s.line(x1: '4', x2: '4', y1: '22', y2: '15') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems