main

mattermost/focalboard

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

logo.tsx

TLDR

This file exports a functional React component called LogoIcon. It imports and renders the CompassIcon component.

Classes

There are no classes in this file.

Methods

There are no methods in this file.

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

import React from 'react'

import './logo.scss'
import CompassIcon from './compassIcon'

export default function LogoIcon(): JSX.Element {
    return (
        <CompassIcon
            icon='product-boards'
            className='boards-rhs-icon'
        />
    )
}