@fortawesome/free-regular-svg-icons#faLightbulb TypeScript Examples

The following examples show how to use @fortawesome/free-regular-svg-icons#faLightbulb. 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: LessonTip.tsx    From frontend.ro with MIT License 6 votes vote down vote up
export default function LessonTip({ icon, children } : PropsWithChildren<Props>) {
  return (
    <p className={`${styles['lesson-tip']} d-flex align-items-center`}>
      {
        // Using icon={icon || faLightbulb} throws the following
        // TypeScript error: Expression produces a union type that is too complex to represent.
        icon
          ? <FontAwesomeIcon width="32" icon={icon} />
          : <FontAwesomeIcon width="32" icon={faLightbulb} />
      }
      <span>
        {children}
      </span>
    </p>
  );
}