main

mattermost/focalboard

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

brokenFile.tsx

TLDR

This rokenFile.tsx file is a React component that renders a broken file icon.

Classes

BrokenFile

The BrokenFile class is a React component that renders a broken file icon. It uses the CompassIcon component to display the icon with the specified properties.

END

// 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 BrokenFile(): JSX.Element {
    return (
        <CompassIcon
            icon='file-image-broken-outline'
            className='BrokenFile'
        />
    )
}