main

mattermost/focalboard

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

random.tsx

TLDR

This file exports a React component called RandomIcon, which renders an icon component called CompassIcon with the 'shuffle-variant' icon.

Classes

// 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 RandomIcon(): JSX.Element {
    return (
        <CompassIcon
            icon='shuffle-variant'
        />
    )
}