@mui/icons-material#ReportGmailerrorred TypeScript Examples

The following examples show how to use @mui/icons-material#ReportGmailerrorred. 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: IrregularityReport.tsx    From frontend with MIT License 6 votes vote down vote up
export default function IrregularityReport({ campaign }: Props) {
  const { t } = useTranslation()

  return (
    <StyledGrid item xs={12} mt={5} p={3} className={classes.irregularityReportWrapper}>
      <LinkButton
        fullWidth
        href={`/campaigns/${campaign.slug}/irregularity`}
        variant="outlined"
        size="small"
        startIcon={<ReportGmailerrorred className={classes.reportIcon} />}
        color="secondary"
        className={classes.reportButton}>
        {t('irregularity:report-btn')}
      </LinkButton>
    </StyledGrid>
  )
}