You can override icons according to your icons set in the app. Here's an example how to render a custom react component instead of built in icons:
// DialectNotificationComponent.tsx'use client';import'@dialectlabs/react-ui/index.css';import { SVGProps } from'react';import { DialectSolanaSdk } from'@dialectlabs/react-sdk-blockchain-solana';import { Icons, NotificationTypeStyles, NotificationsButton,} from'@dialectlabs/react-ui';constDAPP_ADDRESS='...';// Override a set of icons in the Icons variable before using dialect componentIcons.Close= (props:SVGProps<SVGSVGElement>) => {// render your close icon instead of the default onereturnnull;}exportconstDialectSolanaNotificationsButton= () => {return (<DialectSolanaSdk dappAddress={DAPP_ADDRESS}><NotificationsButton /></DialectSolanaSdk> );};