main

mattermost/focalboard

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

sortUp.tsx

TLDR

This file sortUp.tsx is a React component that renders a "SortUpIcon" using SVG.

Methods

None

Classes

None

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

import React from 'react'

import './sortUp.scss'

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