mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
16 lines
476 B
TypeScript
16 lines
476 B
TypeScript
import { PropsWithChildren } from 'react';
|
|
import IAIInformationalPopover from '../../../common/components/IAIInformationalPopover';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
export const ParamSeedPopover = (props: PropsWithChildren) => {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<IAIInformationalPopover
|
|
paragraph={t('popovers.paramSeed.paragraph')}
|
|
heading={t('popovers.paramSeed.heading')}
|
|
triggerComponent={props.children}
|
|
/>
|
|
);
|
|
};
|