From d425c083f7c55910ee7e119c370588691fe5373e Mon Sep 17 00:00:00 2001 From: Zee <50284+zspencer@users.noreply.github.com> Date: Wed, 28 Jun 2023 17:33:34 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=8C=B8=E2=9C=A8=20`Component`:=20Add=20`b?= =?UTF-8?q?ell`=20option=20to=20`SvgComponent`=20(#1614)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `Component`: Add `bell` option to `SvgComponent` - https://github.com/zinc-collective/convene/issues/1511 - https://github.com/zinc-collective/convene/issues/1187 Co-authored-by: Kelly Hong --- app/components/svg_component.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/components/svg_component.rb b/app/components/svg_component.rb index cfb667ed8..783b0b5ea 100644 --- a/app/components/svg_component.rb +++ b/app/components/svg_component.rb @@ -6,6 +6,7 @@ class SvgComponent < ApplicationComponent gear: :gear, map: :map, receipt_percent: :receipt_percent, + bell: :ringing_bell, tag: :tag }.with_indifferent_access.freeze @@ -77,4 +78,10 @@ def cart SVG end + + def ringing_bell + <<~SVG + + SVG + end end