Files
tkmind_go/ui/desktop/src/components/RecipeHeader.tsx
T
Douwe Osinga d836a10af1 Next camp (#5237)
Co-authored-by: Douwe Osinga <douwe@squareup.com>
Co-authored-by: Zane <75694352+zanesq@users.noreply.github.com>
Co-authored-by: Zane Staggs <zane@squareup.com>
2025-10-21 15:00:21 -07:00

18 lines
542 B
TypeScript

interface RecipeHeaderProps {
title: string;
}
export function RecipeHeader({ title }: RecipeHeaderProps) {
return (
<div className={`flex items-center justify-between px-4 py-2 border-b border-borderSubtle'}`}>
<div className="flex items-center ml-6">
<span className="w-2 h-2 rounded-full bg-green-500 mr-2" />
<span className="text-sm">
<span className="text-textSubtle">Recipe</span>{' '}
<span className="text-textStandard">{title}</span>
</span>
</div>
</div>
);
}