import React from 'react'; import { FontAwesomeIcon, FontAwesomeIconProps, } from '@fortawesome/react-fontawesome'; import { Box, BoxProps } from '@mantine/core'; const Icon: React.FC = ({ boxProps, ...props }) => { return ( ); }; export default Icon;