main

mattermost/focalboard

Last updated at: 29/12/2023 09:41

alert.tsx

TLDR

This file exports a React component called AlertIcon that renders an Alert icon using the CompassIcon component.

Methods (if applicable)

N/A

Classes (if applicable)

N/A

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.

import React from 'react'

import CompassIcon from './compassIcon'

export default function AlertIcon(): JSX.Element {
    return (
        <CompassIcon
            icon='alert-outline'
            className='AlertIcon'
        />
    )
}