diff --git a/app/components/icons/notification.tsx b/app/components/icons/notification.tsx index e385b6a..22ca578 100644 --- a/app/components/icons/notification.tsx +++ b/app/components/icons/notification.tsx @@ -1,15 +1,14 @@ import type { JSX, SVGProps } from 'react' -interface NotificationIconProperties - extends JSX.IntrinsicAttributes, - SVGProps { +type TNotificationIcon = { showBadge?: boolean -} +} & JSX.IntrinsicAttributes & + SVGProps export const NotificationIcon = ({ showBadge = false, ...properties -}: NotificationIconProperties) => { +}: TNotificationIcon) => { return ( {

- + {/* end next planing create component for this section */}
@@ -42,10 +44,7 @@ export const NewsDetailPage = () => { />
-
+
{htmlParse(content)}

Share this post