import type { PropsWithChildren } from 'react'; import { VscInfo } from 'react-icons/vsc'; export function Info({ children }: PropsWithChildren<{}>) { return (
{children}
Info
); }