main

mattermost/focalboard

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

lockOutline.tsx

TLDR

This file exports a functional component called LockOutline that renders an icon with the class name LockOutlineIcon. The icon used is the compassIcon with the label lock-outline.

// 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 LockOutline(): JSX.Element {
    return (
        <CompassIcon
            icon='lock-outline'
            className='LockOutlineIcon'
        />
    )
}