main

mattermost/focalboard

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

cardActionsMenuIcon.tsx

TLDR

The cardActionsMenuIcon.tsx file exports a React component called CardActionsMenuIcon. It renders an IconButton component with an OptionsIcon.

Classes

CardActionsMenuIcon

The CardActionsMenuIcon class is a React component. It renders an IconButton component with an OptionsIcon, creating an icon button for card actions menu.

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

import React from 'react'

import OptionsIcon from '../../widgets/icons/options'
import IconButton from '../../widgets/buttons/iconButton'

import './cardActionsMenuIcon.scss'

const CardActionsMenuIcon = () => {
    return (
        <IconButton
            className='CardActionsMenuIcon'
            icon={<OptionsIcon/>}
        />
    )
}

export default CardActionsMenuIcon