import { clsx } from 'clsx'; /** * Use this component to display a single showcase item; usually wraps a logo or avatar etc. * * Should be used with the `LandingShowcase` component. */ export const LandingShowcaseItem = ({ className, children, }: { className?: string; children: React.ReactNode; }) => { return (
{children}
); };