Sha256: 64767a589a1b6eb4e5cd93a3c13ee094311773f57802f6123dee4caadc803918
Contents?: true
Size: 716 Bytes
Versions: 26
Compression:
Stored size: 716 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class BellRing < Base def view_template 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: 'M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9') s.path(d: 'M10.3 21a1.94 1.94 0 0 0 3.4 0') s.path(d: 'M4 2C2.8 3.7 2 5.7 2 8') s.path(d: 'M22 8c0-2.3-.8-4.3-2-6') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems