, "level">
) {
return ;
};
function InfoIcon(props: React.ComponentPropsWithoutRef<"svg">) {
return (
);
}
export function Image({
className,
...props
}: React.ComponentPropsWithoutRef<"img">) {
return (
);
}
export function Note({ children }: { children: React.ReactNode }) {
return (
);
}
export function Row({ children }: { children: React.ReactNode }) {
return (
{children}
);
}
export function Col({
children,
sticky = false,
}: {
children: React.ReactNode;
sticky?: boolean;
}) {
return (
:first-child]:mt-0 [&>:last-child]:mb-0",
sticky && "xl:sticky xl:top-24"
)}
>
{children}
);
}
export function Properties({ children }: { children: React.ReactNode }) {
return (
);
}
export function Property({
name,
children,
type,
}: {
name: string;
children: React.ReactNode;
type?: string;
}) {
return (
- Name
-
{name}
{type && (
<>
- Type
-
{type}
>
)}
- Description
-
{children}
);
}