import { FC } from "react"; // ui import { Breadcrumbs } from "@plane/ui"; import { Settings } from "lucide-react"; interface IProfileSettingHeader { title: string; } export const ProfileSettingsHeader: FC = (props) => { const { title } = props; return (
} link="/profile" />
); };