1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-24 04:13:27 +02:00
metamask-extension/ui/app/components/tabs/tab/tab.component.js

32 lines
575 B
JavaScript
Raw Normal View History

import React from 'react'
import PropTypes from 'prop-types'
import classnames from 'classnames'
const Tab = props => {
const { name, onClick, isActive, tabIndex } = props
return (
<li
className={classnames(
'tab',
isActive && 'tab--active',
)}
onClick={event => {
event.preventDefault()
onClick(tabIndex)
}}
>
{ name }
</li>
)
}
Tab.propTypes = {
name: PropTypes.string.isRequired,
onClick: PropTypes.func,
isActive: PropTypes.bool,
tabIndex: PropTypes.number,
}
export default Tab