// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import React from 'react' import {Constants} from '../constants' import './label.scss' type Props = { color?: string title?: string children: React.ReactNode className?: string } // Switch is an on-off style switch / checkbox function Label(props: Props): JSX.Element { let color = 'empty' if (props.color && props.color in Constants.menuColors) { color = props.color } return ( {props.children} ) } export default React.memo(Label)