53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
import React from "react";
|
|
import Card from "@mui/material/Card";
|
|
import { Typography } from "@mui/material";
|
|
import { alpha, styled } from '@mui/material/styles';
|
|
import { pink } from '@mui/material/colors';
|
|
import Switch from '@mui/material/Switch';
|
|
|
|
const GreenSwitch = styled(Switch)(({ theme }) => ({
|
|
'& .MuiSwitch-switchBase.Mui-checked': {
|
|
color: pink[500],
|
|
'&:hover': {
|
|
backgroundColor: alpha(pink[500], theme.palette.action.hoverOpacity),
|
|
},
|
|
},
|
|
'& .MuiSwitch-switchBase.Mui-checked + .MuiSwitch-track': {
|
|
backgroundColor: pink[500],
|
|
},
|
|
}));
|
|
|
|
const label = { inputProps: { 'aria-label': 'Color switch demo' } };
|
|
|
|
export default function Color() {
|
|
return (
|
|
<>
|
|
<Card
|
|
sx={{
|
|
boxShadow: "none",
|
|
borderRadius: "10px",
|
|
p: "25px",
|
|
mb: "15px",
|
|
}}
|
|
>
|
|
<Typography
|
|
as="h3"
|
|
sx={{
|
|
fontSize: 18,
|
|
fontWeight: 500,
|
|
mb: '10px'
|
|
}}
|
|
>
|
|
Color
|
|
</Typography>
|
|
|
|
<Switch {...label} defaultChecked />
|
|
<Switch {...label} defaultChecked color="secondary" />
|
|
<Switch {...label} defaultChecked color="warning" />
|
|
<Switch {...label} defaultChecked color="default" />
|
|
<GreenSwitch {...label} defaultChecked />
|
|
</Card>
|
|
</>
|
|
);
|
|
}
|