main

mattermost/focalboard

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

separatorOption.tsx

TLDR

This file is a React component that renders a separator menu option.

Classes

SeparatorOption

This class is a React functional component that renders a separator menu option. It uses the menu-separator CSS class to style the option.

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React, {FC} from 'react'

import './separatorOption.scss'

const SeparatorOption: FC = (): JSX.Element => (
    <div className='MenuOption MenuSeparator menu-separator'/>
)

export default SeparatorOption