import styled from "styled-components"; import { defaultBorderRadius, lightGray, vscInputBackground, vscListActiveBackground, vscListActiveForeground, } from ".."; const TopDiv = styled.div` display: flex; align-items: center; text-align: center; margin: auto; width: fit-content; cursor: pointer; border: 1px solid ${lightGray}; background-color: ${vscInputBackground}; border-radius: ${defaultBorderRadius}; &:hover { background-color: ${lightGray}55; } `; const SubDiv = styled.div<{ selected: boolean }>` text-align: center; padding: 8px 12px; border-radius: ${defaultBorderRadius}; transition: all 0.2s ease-in-out; ${(props) => props.selected && ` background-color: ${vscListActiveBackground}; box-shadow: 0px 0px 8px 0px ${lightGray}88; color: ${vscListActiveForeground}; `} `; function Toggle(props: { optionOne: string; optionTwo: string; selected: boolean; onClick: () => void; }) { return ( {props.optionOne} {props.optionTwo} ); } export default Toggle;