From b93fc8b557baed40a312b51196c600be3daaa6fd Mon Sep 17 00:00:00 2001 From: AAGaming Date: Fri, 26 Jul 2024 14:16:05 -0400 Subject: feat(toaster): render notifications in the quick access menu --- frontend/src/components/DeckyIcon.tsx | 74 ++++++++++++++++++----------------- 1 file changed, 38 insertions(+), 36 deletions(-) (limited to 'frontend/src/components/DeckyIcon.tsx') diff --git a/frontend/src/components/DeckyIcon.tsx b/frontend/src/components/DeckyIcon.tsx index 515bd847..fce249e3 100644 --- a/frontend/src/components/DeckyIcon.tsx +++ b/frontend/src/components/DeckyIcon.tsx @@ -1,37 +1,39 @@ -export default function DeckyIcon() { - return ( - - - +import { FC, SVGAttributes } from 'react'; - - - - - - ); -} +const DeckyIcon: FC> = (props) => ( + + + + + + + + + +); + +export default DeckyIcon; -- cgit v1.2.3