1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-23 05:24:18 +00:00
pds-2021-g2-nest/nest_frontend/components/interactive/PickerVisualization.js

25 lines
947 B
JavaScript
Raw Normal View History

2021-05-19 00:05:20 +00:00
import React from "react"
import ButtonIconOnly from "../base/ButtonIconOnly"
2021-05-20 10:16:01 +00:00
import { faChartBar, faCloud, faMap, faStar } from "@fortawesome/free-solid-svg-icons"
2021-05-19 00:05:20 +00:00
export default function PickerVisualization({ currentTab, setTab, ...props }) {
return (
<div {...props}>
2021-05-20 11:36:07 +00:00
<ButtonIconOnly
onClick={() => setTab("stats")} disabled={currentTab ===
"stats"} color={"Grey"} icon={faStar}
/>
2021-05-20 10:16:01 +00:00
<ButtonIconOnly
onClick={() => setTab("wordcloud")} disabled={currentTab ===
"wordcloud"} color={"Grey"} icon={faCloud}
/>
<ButtonIconOnly
onClick={() => setTab("histogram")} disabled={currentTab ===
"histogram"} color={"Grey"} icon={faChartBar}
/>
2021-05-19 00:05:20 +00:00
<ButtonIconOnly onClick={() => setTab("map")} disabled={currentTab === "map"} color={"Grey"} icon={faMap}/>
</div>
)
}