main
Last change
on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
692 bytes
|
Line | |
---|
1 | import { forwardRef } from 'react';
|
---|
2 | // @mui
|
---|
3 | import Box, { BoxProps } from '@mui/material/Box';
|
---|
4 |
|
---|
5 | // ----------------------------------------------------------------------
|
---|
6 |
|
---|
7 | export interface SvgColorProps extends BoxProps {
|
---|
8 | src: string;
|
---|
9 | }
|
---|
10 |
|
---|
11 | const SvgColor = forwardRef<HTMLSpanElement, SvgColorProps>(({ src, sx, ...other }, ref) => (
|
---|
12 | <Box
|
---|
13 | component="span"
|
---|
14 | className="svg-color"
|
---|
15 | ref={ref}
|
---|
16 | sx={{
|
---|
17 | width: 24,
|
---|
18 | height: 24,
|
---|
19 | display: 'inline-block',
|
---|
20 | bgcolor: 'currentColor',
|
---|
21 | mask: `url(${src}) no-repeat center / contain`,
|
---|
22 | WebkitMask: `url(${src}) no-repeat center / contain`,
|
---|
23 | ...sx,
|
---|
24 | }}
|
---|
25 | {...other}
|
---|
26 | />
|
---|
27 | ));
|
---|
28 |
|
---|
29 | export default SvgColor;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.