synapse-react-client
Version:
[](https://badge.fury.io/js/synapse-react-client) [](https://github.com/prettier/prettie
16 lines • 469 B
TypeScript
import { IconName } from '../IconSvg';
export type TopicProps = {
isSubscribed: boolean;
isLoading: boolean;
icon: IconName;
name?: string;
nameHref?: string;
onToggleSubscribe: () => void;
};
/**
* Represents a single object on which a Synapse user has subscribed to notifications
* @param props
* @constructor
*/
export default function Topic(props: TopicProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Topic.d.ts.map