diff --git a/components/IconButton.tsx b/components/IconButton.tsx new file mode 100644 index 0000000..f714e0c --- /dev/null +++ b/components/IconButton.tsx @@ -0,0 +1,27 @@ +import { FC } from 'react'; +import styled from 'styled-components'; +import Image from 'next/image'; + +const Btn = styled.button` + display: inline; + cursor: pointer; + background: none; + border: none; + color: none; + outline: none; +`; + +export interface Props { + icon: string; + onClick?: () => void; +} + +const IconButton: FC = ({ icon, onClick }) => { + return ( + + Icon Button + + ); +}; + +export default IconButton;