export type OpenInNewWindowProps = { children?: React.ReactNode; url?: string; className?: string; }; export function OpenInNewWindow({ url, className, children, }: OpenInNewWindowProps) { return ( {children} ); }