react-icons/bs#BsEnvelope TypeScript Examples

The following examples show how to use react-icons/bs#BsEnvelope. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ContactUsSection.tsx    From po8klasie with GNU General Public License v3.0 6 votes vote down vote up
ContactUsSection: FC = () => {
  const { t } = useTranslation('landing', { keyPrefix: 'contactUsSection' });
  return (
    <div className="my-32" id="contact-us">
      <div className="w-container mx-auto">
        <h2 className="text-center text-3xl font-bold">{t('mainHeader1')}</h2>
        <div className="mt-10 flex justify-center flex-wrap">
          <div className="mt-10 md:mt-0">
            <RoundedExternalLink href="mailto:[email protected]" icon={BsEnvelope}>
              [email protected]
            </RoundedExternalLink>
          </div>
          <div className="mt-10 md:mt-0 mx-10">
            <RoundedExternalLink href="https://m.me/po8klasie" icon={FaFacebookMessenger}>
              Messenger
            </RoundedExternalLink>
          </div>
        </div>
        <h2 className="mt-32 text-center text-3xl font-bold">{t('mainHeader2')}</h2>
        <div className="mt-10 flex justify-center">
          <RoundedExternalLink href="https://fb.com/po8klasie" icon={FaFacebookF}>
            fb.com/po8klasie
          </RoundedExternalLink>
        </div>
      </div>
    </div>
  );
}