import { FC } from 'react'; import styled from 'styled-components'; import Image from 'next/image'; interface Props { icon: string; onClick?: () => void; } const Btn = styled.button` display: inline; cursor: pointer; background: none; border: none; color: none; `; const IconButton: FC = ({ icon, onClick, className }) => { return ( ); }; export default IconButton;