fix bread

This commit is contained in:
rizky 2024-04-02 01:23:49 -07:00
parent b5531a74d1
commit c7d2e95e4a
1 changed files with 8 additions and 2 deletions

View File

@ -4,7 +4,8 @@ import { Skeleton } from "../ui/skeleton";
type BreadcrumbProps = { type BreadcrumbProps = {
on_load: () => Promise<any[]>; on_load: () => Promise<any[]>;
props: any; className?: string;
props?: any;
}; };
export const Breadcrumb: FC<BreadcrumbProps> = (_arg) => { export const Breadcrumb: FC<BreadcrumbProps> = (_arg) => {
@ -31,7 +32,12 @@ export const Breadcrumb: FC<BreadcrumbProps> = (_arg) => {
}, [on_load]); }, [on_load]);
return ( return (
<div className="c-w-full c-flex c-items-center c-px-4 c-flex-wrap c-py-2 c-border-b"> <div
className={cx(
"breadcrumb c-w-full c-flex c-items-center c-flex-wrap",
_arg.className
)}
>
{local.status !== "ready" ? ( {local.status !== "ready" ? (
<Skeleton className="c-h-4 c-w-[80%]" /> <Skeleton className="c-h-4 c-w-[80%]" />
) : ( ) : (