source: src/components/iconify/iconify.tsx@ 5d6f37a

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 
1import { forwardRef } from 'react';
2// icons
3import { Icon } from '@iconify/react';
4// @mui
5import Box, { BoxProps } from '@mui/material/Box';
6//
7import { IconifyProps } from './types';
8
9// ----------------------------------------------------------------------
10
11interface Props extends BoxProps {
12 icon: IconifyProps;
13}
14
15const 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
26export default Iconify;
Note: See TracBrowser for help on using the repository browser.