mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 21:10:38 +03:00
22 lines
530 B
TypeScript
22 lines
530 B
TypeScript
import { IConstituenta } from '../../models/rsform';
|
|
import ConceptTooltip from '../Common/ConceptTooltip';
|
|
import InfoConstituenta from './InfoConstituenta';
|
|
|
|
interface ConstituentaTooltipProps {
|
|
data: IConstituenta
|
|
anchor: string
|
|
}
|
|
|
|
function ConstituentaTooltip({ data, anchor }: ConstituentaTooltipProps) {
|
|
return (
|
|
<ConceptTooltip
|
|
anchorSelect={anchor}
|
|
className='max-w-[25rem] min-w-[25rem]'
|
|
>
|
|
<InfoConstituenta data={data} />
|
|
</ConceptTooltip>
|
|
);
|
|
}
|
|
|
|
export default ConstituentaTooltip;
|