mirror of
https://github.com/Grasscutters/gcgm-plugin.git
synced 2026-05-14 09:32:37 +08:00
12 lines
291 B
JavaScript
12 lines
291 B
JavaScript
import React from 'react'
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
|
|
|
export default function NavigationButton(props) {
|
|
return (
|
|
<div className='nav-button'>
|
|
<FontAwesomeIcon icon={props.icon} />
|
|
<p> {props.name} </p>
|
|
</div>
|
|
)
|
|
}
|