import type { InlineCodeVariant } from "~/components/code/InlineCode";
import { InlineCode } from "~/components/code/InlineCode";
import { SpanCodePathAccessory } from "./SpanTitle";
import { cn } from "~/utils/cn";
type TaskPathProps = {
filePath: string;
functionName: string;
className?: string;
};
export function TaskPath({ filePath, functionName, className }: TaskPathProps) {
return (
);
}
type TaskFileNameProps = {
fileName: string;
variant?: InlineCodeVariant;
className?: string;
};
export function TaskFileName({ variant, fileName, className }: TaskFileNameProps) {
return (
{`${fileName}`}
);
}