main

mattermost/focalboard

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

Link.tsx

TLDR

This file exports a functional component called LinkIcon that renders a specific icon using the CompassIcon component.

Classes

No classes in the file

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

import React from 'react'

import CompassIcon from './compassIcon'

import './link.scss'

export default function LinkIcon(): JSX.Element {
    return (
        <CompassIcon
            icon='link-variant'
            className='LinkIcon'
        />
    )
}