mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
10 lines
238 B
TypeScript
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>
|
|
);
|
|
};
|