main

mattermost/focalboard

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

closeCircle.tsx

TLDR

This file exports a function component called CloseCircle which renders a CompassIcon component with the icon "close-circle" and a CSS class "CloseCircle".

Classes

CloseCircle

This class exports a function component that renders a CompassIcon component.

Methods

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

import React from 'react'

import CompassIcon from './compassIcon'

import './add.scss'

export default function CloseCircle(): JSX.Element {
    return (
        <CompassIcon
            icon='close-circle'
            className='CloseCircle'
        />
    )
}