feat: Initial setup of theme.

This commit is contained in:
vikrant k
2022-01-13 22:28:45 +05:30
parent aaa083c184
commit fd2d9fa882
371 changed files with 17971 additions and 100 deletions

View File

@@ -0,0 +1,45 @@
/**
=========================================================
* Material Dashboard 2 PRO React - v2.0.0
=========================================================
* Product Page: https://www.creative-tim.com/product/material-dashboard-pro-react
* Copyright 2021 Creative Tim (https://www.creative-tim.com)
Coded by www.creative-tim.com
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/
// @mui material components
import { styled } from '@mui/material/styles';
import LinearProgress from '@mui/material/LinearProgress';
export default styled(LinearProgress)(({ theme, ownerState }) => {
const { palette, functions } = theme;
const { color, value, variant } = ownerState;
const { text, gradients } = palette;
const { linearGradient } = functions;
// background value
let backgroundValue;
if (variant === 'gradient') {
backgroundValue = gradients[color]
? linearGradient(gradients[color].main, gradients[color].state)
: linearGradient(gradients.info.main, gradients.info.state);
} else {
backgroundValue = palette[color] ? palette[color].main : palette.info.main;
}
return {
'& .MuiLinearProgress-bar': {
background: backgroundValue,
width: `${value}%`,
color: text.main
}
};
});

View File

@@ -0,0 +1,69 @@
/**
=========================================================
* Material Dashboard 2 PRO React - v2.0.0
=========================================================
* Product Page: https://www.creative-tim.com/product/material-dashboard-pro-react
* Copyright 2021 Creative Tim (https://www.creative-tim.com)
Coded by www.creative-tim.com
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/
import { forwardRef } from 'react';
// prop-types is a library for typechecking of props
import PropTypes from 'prop-types';
// Material Dashboard 2 PRO React components
import MDTypography from 'components/MDTypography';
// Custom styles for MDProgress
import MDProgressRoot from 'components/MDProgress/MDProgressRoot';
const MDProgress = forwardRef(({ variant, color, value, label, ...rest }, ref) => (
<>
{label && (
<MDTypography variant="button" fontWeight="medium" color="text">
{value}%
</MDTypography>
)}
<MDProgressRoot
{...rest}
ref={ref}
variant="determinate"
value={value}
ownerState={{ color, value, variant }}
/>
</>
));
// Setting default values for the props of MDProgress
MDProgress.defaultProps = {
variant: 'contained',
color: 'info',
value: 0,
label: false
};
// Typechecking props for the MDProgress
MDProgress.propTypes = {
variant: PropTypes.oneOf(['contained', 'gradient']),
color: PropTypes.oneOf([
'primary',
'secondary',
'info',
'success',
'warning',
'error',
'light',
'dark'
]),
value: PropTypes.number,
label: PropTypes.bool
};
export default MDProgress;