main

mattermost/focalboard

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

options.tsx

TLDR

This file contains a React component named OptionsIcon that renders an icon for options. It imports the CompassIcon component and a CSS file for styling.

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'

import './options.scss'

export default function OptionsIcon(): JSX.Element {
    return (
        <CompassIcon
            icon='dots-horizontal'
            className='OptionsIcon'
        />
    )
}