main

mattermost/focalboard

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

dot.tsx

TLDR

This file exports a functional component called DotIcon that renders a dot icon.

Classes

None

Methods

None

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

import React from 'react'

import './dot.scss'

export default function DotIcon(): JSX.Element {
    return (
        <svg
            xmlns='http://www.w3.org/2000/svg'
            className='DotIcon Icon'
            viewBox='0 0 100 100'
        >
            <circle
                cx='50'
                cy='50'
                r='5'
            />
        </svg>
    )
}