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:
597 bytes
|
Line | |
---|
1 | import { forwardRef } from 'react';
|
---|
2 | // icons
|
---|
3 | import { Icon } from '@iconify/react';
|
---|
4 | // @mui
|
---|
5 | import Box, { BoxProps } from '@mui/material/Box';
|
---|
6 | //
|
---|
7 | import { IconifyProps } from './types';
|
---|
8 |
|
---|
9 | // ----------------------------------------------------------------------
|
---|
10 |
|
---|
11 | interface Props extends BoxProps {
|
---|
12 | icon: IconifyProps;
|
---|
13 | }
|
---|
14 |
|
---|
15 | const Iconify = forwardRef<SVGElement, Props>(({ icon, width = 20, sx, ...other }, ref) => (
|
---|
16 | <Box
|
---|
17 | ref={ref}
|
---|
18 | component={Icon}
|
---|
19 | className="component-iconify"
|
---|
20 | icon={icon}
|
---|
21 | sx={{ width, height: width, ...sx }}
|
---|
22 | {...other}
|
---|
23 | />
|
---|
24 | ));
|
---|
25 |
|
---|
26 | export default Iconify;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.