Sha256: 767cf8e8c8d673c05b512ccd1f88b5a411ee8286502842679fd0b8d6ffef3ad8
Contents?: true
Size: 626 Bytes
Versions: 18
Compression:
Stored size: 626 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Rss < 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 11a9 9 0 0 1 9 9') s.path(d: 'M4 4a16 16 0 0 1 16 16') s.circle(cx: '5', cy: '19', r: '1') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems