UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

16 lines 469 B
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