mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
0360d01aeb
GitOrigin-RevId: b00128bc087e2ebe9911fa19b7e62fd4bb492226
24 lines
613 B
JavaScript
24 lines
613 B
JavaScript
import React from 'react'
|
|
import { TabList, Tab } from '@reach/tabs'
|
|
import PropTypes from 'prop-types'
|
|
|
|
export default function SymbolPaletteTabs({ categories, disabled }) {
|
|
return (
|
|
<TabList aria-label="Symbol Categories">
|
|
{categories.map(category => (
|
|
<Tab key={category.id} disabled={disabled}>
|
|
{category.label}
|
|
</Tab>
|
|
))}
|
|
</TabList>
|
|
)
|
|
}
|
|
SymbolPaletteTabs.propTypes = {
|
|
categories: PropTypes.arrayOf(
|
|
PropTypes.shape({
|
|
id: PropTypes.string.isRequired,
|
|
label: PropTypes.string.isRequired,
|
|
})
|
|
).isRequired,
|
|
disabled: PropTypes.bool,
|
|
}
|