/** * React component for a selectable option on the Faction UI. These * options including working for the faction, hacking missions, purchasing * augmentations, etc. */ import * as React from "react"; import { StdButton } from "../../ui/React/StdButton"; import Typography from "@mui/material/Typography"; import Button from "@mui/material/Button"; import Paper from "@mui/material/Paper"; import Box from "@mui/material/Box"; type IProps = { buttonText: string; infoText: string; onClick: (e: React.MouseEvent) => void; }; export function Option(props: IProps): React.ReactElement { return ( {props.infoText} ); }