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