mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
14 lines
727 B
JavaScript
14 lines
727 B
JavaScript
import React from "react"
|
|
import ButtonIconOnly from "../base/ButtonIconOnly"
|
|
import { faAt, faChartBar, faClock, faCloud, faHashtag, faMap, faMapPin } from "@fortawesome/free-solid-svg-icons"
|
|
|
|
|
|
export default function PickerVisualization({ currentTab, setTab, ...props }) {
|
|
return (
|
|
<div {...props}>
|
|
<ButtonIconOnly onClick={() => setTab("wordcloud")} disabled={currentTab === "wordcloud"} color={"Grey"} icon={faCloud}/>
|
|
<ButtonIconOnly onClick={() => setTab("histogram")} disabled={currentTab === "histogram"} color={"Grey"} icon={faChartBar}/>
|
|
<ButtonIconOnly onClick={() => setTab("map")} disabled={currentTab === "map"} color={"Grey"} icon={faMap}/>
|
|
</div>
|
|
)
|
|
}
|