import { FC } from 'react'; // eslint-disable-next-line no-restricted-imports import { SvgIcon } from '@mui/material'; // eslint-disable-next-line no-restricted-imports import type { SvgIconProps } from '@mui/material'; export interface PinIconProps extends Omit { color?: string } export const PinIcon: FC = ({ color, style, ...props}) => { const propsStyles = {"color": color}; const customStyles = {}; const styles = {...propsStyles, ...customStyles, ...style} return ( ) };