Files
2025-01-06 13:11:24 -05:00

31 lines
768 B
TypeScript

import React from "react";
export function Frame({
children,
className,
description,
}: {
children: React.ReactNode;
className?: string;
description?: string;
}) {
return (
<>
<div
className={`flex space-x-4 w-full mx-auto justify-center ${className}`}
>
{React.Children.map(children, (child) =>
React.isValidElement(child)
? React.cloneElement(child as React.ReactElement<any>, {
className: `border border-foreground-muted rounded-md shadow-lg ${
child.props.className || ""
}`,
})
: child
)}
</div>
{description && <p className="text-sm text-neutral-500 text-center">{description}</p>}
</>
);
}