@cerberus-design/react
Version:
The Cerberus Design React component library.
13 lines (12 loc) • 480 B
TypeScript
import { NotifyOptions } from './types';
/**
* This private module contains a component that returns the correct icon for a
* notification based on the palette. If there is no result, it is assumed to
* be a 'loading' type.
* @module 'notification/match-icon'
*/
interface MatchNotificationIconProps {
type?: NotifyOptions['palette'];
}
export declare function MatchNotificationIcon(props: MatchNotificationIconProps): import("react/jsx-runtime").JSX.Element;
export {};