main
Last change
on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
574 bytes
|
Rev | Line | |
---|
[5d6f37a] | 1 | // @mui
|
---|
| 2 | import Box, { BoxProps } from '@mui/material/Box';
|
---|
| 3 |
|
---|
| 4 | // ----------------------------------------------------------------------
|
---|
| 5 |
|
---|
| 6 | export default function HeaderShadow({ sx, ...other }: BoxProps) {
|
---|
| 7 | return (
|
---|
| 8 | <Box
|
---|
| 9 | sx={{
|
---|
| 10 | left: 0,
|
---|
| 11 | right: 0,
|
---|
| 12 | bottom: 0,
|
---|
| 13 | m: 'auto',
|
---|
| 14 | height: 24,
|
---|
| 15 | zIndex: -1,
|
---|
| 16 | opacity: 0.48,
|
---|
| 17 | borderRadius: '50%',
|
---|
| 18 | position: 'absolute',
|
---|
| 19 | width: `calc(100% - 48px)`,
|
---|
| 20 | boxShadow: (theme) => theme.customShadows.z8,
|
---|
| 21 | ...sx,
|
---|
| 22 | }}
|
---|
| 23 | {...other}
|
---|
| 24 | />
|
---|
| 25 | );
|
---|
| 26 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.