, "level">,
) {
return ;
};
function InfoIcon(props: ComponentPropsWithoutRef<"svg">) {
return (
);
}
function WarningIcon(props: ComponentPropsWithoutRef<"svg">) {
return (
);
}
export function Note({ children }: { children: ReactNode }) {
return (
);
}
export function Warning({ children }: { children: ReactNode }) {
return (
);
}
export function Row({ children }: { children: ReactNode }) {
return (
{children}
);
}
export function Col({
children,
sticky = false,
}: {
children: ReactNode;
sticky?: boolean;
}) {
return (
:first-child]:mt-0 [&>:last-child]:mb-0",
sticky && "xl:sticky xl:top-24",
)}
>
{children}
);
}