Advertisement
kopyl

React styled MUI component

Oct 7th, 2022
2,237
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import { styled } from "@mui/material/styles";
  2.  
  3. const SelectStyled = styled((props: any) => {
  4.   return (
  5.     <Select classes={{ select: props.className }} {...props}>
  6.       {props.children}
  7.     </Select>
  8.   );
  9. })``;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement