import { FC } from 'react'; interface IconTetherProps { className?: string; } const IconTether: FC = ({ className }) => { return ( ); }; export default IconTether;