main

mattermost/focalboard

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

chevronRight.tsx

TLDR

The chevronRight.tsx file is a React component that renders a ChevronRightIcon component, which is a wrapper around a CompassIcon component.

Classes

None

Methods

None

// 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 ChevronRight(): JSX.Element {
    return (
        <CompassIcon
            icon='chevron-right'
            className='ChevronRightIcon'
        />
    )
}