mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-18 01:11:20 -05:00
16 lines
479 B
TypeScript
16 lines
479 B
TypeScript
import { PropsWithChildren } from 'react';
|
|
import IAIInformationalPopover from '../../../common/components/IAIInformationalPopover';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
export const ParamModelPopover = (props: PropsWithChildren) => {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<IAIInformationalPopover
|
|
paragraph={t('popovers.paramModel.paragraph')}
|
|
heading={t('popovers.paramModel.heading')}
|
|
triggerComponent={props.children}
|
|
/>
|
|
);
|
|
};
|