react-icons/bs#BsCheckCircleFill TypeScript Examples

The following examples show how to use react-icons/bs#BsCheckCircleFill. 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: EducationalOfferSection.tsx    From po8klasie with GNU General Public License v3.0 6 votes vote down vote up
EducationalOfferSection: FC = () => {
  return (
    <SchoolInfoSection
      overwriteFooter="Dane dostępne wkrótce"
      id="educationalOffer"
      updateTime={new Date().toDateString()}
    >
      <div className="p-3">
        <h3 className="text-lg font-bold text-dark">Oferta edukacyjna</h3>
        <DataAvailableSoonOverlay>
          <h4 className="text-dark text-base font-semibold mt-2">Zajęcia dodatkowe</h4>
          <ul className="mt-2 grid md:grid-cols-3 xl:grid-cols-5 gap-x-4 gap-y-2 text-gray">
            {tmpExtracurriculars.map((name) => (
              <li key={name}>
                <ItemWithIcon icon={BsCheckCircleFill}>{name}</ItemWithIcon>
              </li>
            ))}
          </ul>
        </DataAvailableSoonOverlay>
      </div>
    </SchoolInfoSection>
  );
}