Files
InvokeAI/invokeai/frontend/web/src/features/parameters/components/Prompts/PromptLabel.tsx
2024-08-14 12:01:49 +10:00

10 lines
238 B
TypeScript

import { Text } from '@invoke-ai/ui-library';
export const PromptLabel = ({ label }: { label: string }) => {
return (
<Text variant="subtext" fontWeight="semibold" pos="absolute" top={1} left={2}>
{label}
</Text>
);
};