react-icons/md#MdError TypeScript Examples

The following examples show how to use react-icons/md#MdError. 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: index.tsx    From nlw06-letmeask with MIT License 6 votes vote down vote up
Toast = (props: ToastTypes) => {
  return (
    <Styled.Container className={`${props.type} ${props.className}`}>
      <p> 
        {props.type==="info" && <MdInfo size={"2.4rem"}/>}
        {props.type==="warning" && <MdWarning size={"2.4rem"}/>}
        {props.type==="error" && <MdError size={"2.4rem"}/>}
        {props.children}
      </p>
    </Styled.Container>
  )
}
Example #2
Source File: index.tsx    From slice-machine with Apache License 2.0 6 votes vote down vote up
getIconAccordingToasterType = ({
  type,
}: {
  type: TypeOptions;
}): JSX.Element | undefined => {
  switch (type) {
    case toast.TYPE.INFO:
      return <MdError />;
    case toast.TYPE.ERROR:
      return <MdDangerous />;
    case toast.TYPE.SUCCESS:
      return <MdDone />;
    case toast.TYPE.WARNING:
      return <MdWarning />;
  }
}