mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -05:00
e0616096e2
Use FormControl for symbol palette search input GitOrigin-RevId: c6f0c7f53797cab417c6bc15f1b30f20761b9fac
28 lines
719 B
JavaScript
28 lines
719 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" className="symbol-palette-tab-list">
|
|
{categories.map(category => (
|
|
<Tab
|
|
key={category.id}
|
|
disabled={disabled}
|
|
className="symbol-palette-tab"
|
|
>
|
|
{category.label}
|
|
</Tab>
|
|
))}
|
|
</TabList>
|
|
)
|
|
}
|
|
SymbolPaletteTabs.propTypes = {
|
|
categories: PropTypes.arrayOf(
|
|
PropTypes.shape({
|
|
id: PropTypes.string.isRequired,
|
|
label: PropTypes.string.isRequired,
|
|
})
|
|
).isRequired,
|
|
disabled: PropTypes.bool,
|
|
}
|