Sha256: 7c3725b017541d0776ed2a10239d68277e13a53aa7a599597f429ae4aaf4888e
Contents?: true
Size: 648 Bytes
Versions: 18
Compression:
Stored size: 648 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class PoundSterling < 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: 'M18 7c0-5.333-8-5.333-8 0') s.path(d: 'M10 7v14') s.path(d: 'M6 21h12') s.path(d: 'M6 13h10') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems