main

mattermost/focalboard

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

HandRight.tsx

TLDR

This file exports a React function component called HandRight that renders a CompassIcon component.

Classes

HandRight

This class is a React function component that renders a CompassIcon component with the icon prop set to 'hand-right' and the className prop set to 'HandRightIcon'.

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