import type { PropsWithChildren } from 'react'; import SvgIcon from './SvgIcon'; const LookForward = ({ children }: PropsWithChildren) => { const { t } = useTranslation(); return (
{children ||

{t('common.lookForward')}

}
); }; export default LookForward;