main

mattermost/focalboard

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

apps.tsx

TLDR

This file exports a functional component called Apps which renders a CompassIcon component.

Methods

Apps

This method is the default export of the file and it returns a JSX element. It renders the CompassIcon component with the icon set to 'apps' and the className set to 'AppsIcon'.

Classes

This file does not contain any classes.

// 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 Apps(): JSX.Element {
    return (
        <CompassIcon
            icon='apps'
            className='AppsIcon'
        />
    )
}