main

mattermost/focalboard

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

chevronUp.tsx

TLDR

This file contains a single functional component called ChevronUp, which renders an SVG icon for an upward chevron using the CompassIcon component.

Methods

There are no methods in this file.

Classes

There are no classes in this file.

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