Commit e686976e authored by janithGamage's avatar janithGamage

fix: update

parent 2a66a709
This source diff could not be displayed because it is too large. You can view the blob instead.
// material-ui
import { useTheme } from '@mui/material/styles';
const StandardLogo = () => {
const theme = useTheme();
return (
<svg width="36" height="18" viewBox="0 0 36 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 0.251007L35.5 17.751H28.4137L18 7.33735L7.58635 17.751H0.5L18 0.251007Z" fill={theme.palette.primary.main} />
</svg>
);
};
export default StandardLogo;
// material-ui
import { useTheme } from '@mui/material/styles';
const StandardPlus = () => {
const theme = useTheme();
return (
<svg width="36" height="35" viewBox="0 0 36 35" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M2.14067 15.527L4.93141 12.7362L4.93432 12.7333H10.1846L8.09556 14.8224L7.55619 15.3617L5.41692 17.501L5.68187 17.7667L17.6666 29.7507L29.9163 17.501L27.7763 15.3617L27.6257 15.2103L25.1486 12.7333H30.3989L30.4018 12.7362L32.5892 14.9235L35.1666 17.501L17.6666 35.001L0.166626 17.501L2.14067 15.527ZM17.6666 0.00100708L27.7785 10.1129H22.5282L17.6666 5.2513L12.805 10.1129H7.55474L17.6666 0.00100708Z"
fill={theme.palette.primary.main}
/>
</svg>
);
};
export default StandardPlus;
// material-ui
import { alpha, useTheme } from '@mui/material/styles';
// ==============================|| USER PROFILE - CARD BACK LEFT ||============================== //
const UserProfileBackLeft = () => {
const theme = useTheme();
return (
<svg width="333" height="61" viewBox="0 0 333 61" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
opacity="0.4"
d="M-0.322477 0.641086L-0.418408 0.55164L-9.20939 59.4297L23.6588 106.206L154.575 130.423C236.759 117.931 383.93 93.3326 315.142 94.879C246.355 96.4253 215.362 64.2785 215.362 64.2785C215.362 64.2785 185.497 26.9117 117.864 33.4279C42.6115 40.6783 10.6143 10.8399 -0.322477 0.641086Z"
fill={alpha(theme.palette.primary.light, 0.4)}
/>
</svg>
);
};
export default UserProfileBackLeft;
// material-ui
import { alpha, useTheme } from '@mui/material/styles';
// ==============================|| USER PROFILE - CARD BACK RIGHT ||============================== //
const UserProfileBackRight = () => {
const theme = useTheme();
return (
<svg width="447" height="116" viewBox="0 0 447 116" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
opacity="0.4"
d="M55.2678 22.3777C-49.5465 -14.1611 7.16534 -48.8529 136.242 -34.0647L214.579 -30.0724L448.26 -8.82579L459.956 104.858C396.401 148.386 406.862 51.7166 297.501 67.1292C188.139 82.5419 225.278 33.322 176.928 20.0906C128.579 6.8592 91.4243 34.9821 55.2678 22.3777Z"
fill={alpha(theme.palette.primary.light, 0.4)}
/>
</svg>
);
};
export default UserProfileBackRight;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment