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

15 lines 491 B
import React from 'react'; export type GoalsV3Props = { entityId: string; svgComponentMap: Record<string, React.FC<React.SVGProps<SVGSVGElement>>>; }; export type GoalsV3CardProps = { countSql?: string; title: string; summary: string; link: string; svgIconComponent?: React.FC<React.SVGProps<SVGSVGElement>>; }; declare const GoalsV3: ({ entityId, svgComponentMap, }: GoalsV3Props) => React.ReactNode; export default GoalsV3; //# sourceMappingURL=GoalsV3.d.ts.map