main

mattermost/focalboard

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

hideSidebar.tsx

TLDR

This file exports a React component called HideSidebarIcon, which renders an SVG icon to hide the sidebar.

Class

There are no classes in this file.

Methods

There are no methods in this file.

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

import React from 'react'

import './hideSidebar.scss'

export default function HideSidebarIcon(): JSX.Element {
    return (
        <svg
            xmlns='http://www.w3.org/2000/svg'
            className='HideSidebarIcon Icon'
            viewBox='0 0 100 100'
        >
            <polyline points='80,20 50,50 80,80'/>
            <polyline points='50,20 20,50, 50,80'/>
        </svg>
    )
}