| 12345678910111213141516171819202122 |
- import { Box, Select } from "@mui/material";
- import styled from "styled-components";
- import selectedTheme from "../../themes";
-
- export const SelectStyled = styled(Select)`
- width: ${props => props.width};
- height: ${props => props.height};
- padding: 2px;
- font-size: 16px;
- font-weight: 600;
- font-family: "Open Sans";
- cursor: pointer;
- & fieldset {
- border-color: ${props => props.borderColor ? props.borderColor : selectedTheme.primaryPurple} !important;
- }
- `
- export const SelectIcon = styled(Box)`
- position: relative;
- top: -1px;
- left: -8px;
- cursor: pointer;
- `
|