You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TextFieldWithIcon.styled.js 419B

123456789101112131415161718
  1. import { Box } from "@mui/material";
  2. import styled from "styled-components";
  3. import { Icon } from "../../Icon/Icon";
  4. import { TextField } from "../TextField/TextField";
  5. export const ComponentContainer = styled(Box)`
  6. `
  7. export const TextFieldStyled = styled(TextField)`
  8. position: relative;
  9. `
  10. export const IconStyled = styled(Icon)`
  11. position: absolute;
  12. top: 5px;
  13. left: 5px;
  14. background-color: blue;
  15. `