loveship/components/overlays/NotificationCard.tsx (8 lines of code) (raw):

import { createSkinComponent } from '@epam/uui-core'; import * as uui from '@epam/uui'; import { EpamPrimaryColor } from '../types'; interface NotificationCardMods { /** * Defines component color. */ color?: EpamPrimaryColor | uui.NotificationCardProps['color']; } /** Represents the properties of the NotificationCard component. */ export interface NotificationCardProps extends uui.NotificationCardCoreProps, NotificationCardMods {} export const NotificationCard = createSkinComponent<uui.NotificationCardProps, NotificationCardProps>(uui.NotificationCard);