import styled from "styled-components"; import { Colors, Sizes } from "../../styles"; import * as React from 'react'; interface ContainerProps { fullWidth?: boolean; } const StyledContainer = styled.div` margin-top: 5px; display: flex; flex-direction: column; width: 25ch; ${(props) => props.fullWidth && ` width: 100%; `} `; interface Props { selectSize: Sizes; color: Colors; } function getSize(size: Sizes) { switch (size) { case "sm": return "20px"; case "md": return "30px"; case "lg": return "40px"; default: return "30px"; } } const StyledSelect = styled.select` height: ${(props) => getSize(props.selectSize)}; background: transparent; border-radius: 3px; border: 1px solid ${ props => props.theme.colorPalette[props.color]?.main}; outline: 0; `; const StyledOption = styled.option` background: ${(props) => props.theme.colorPalette.primary.main}; color: ${(props) => props.theme.colorPalette.primary.fontColor}; `; const StyledLabel = styled.label``; export { StyledContainer, StyledSelect, StyledOption, StyledLabel };