diff --git a/components/IconButton.tsx b/components/IconButton.tsx index 12b35eb..7958165 100644 --- a/components/IconButton.tsx +++ b/components/IconButton.tsx @@ -3,21 +3,29 @@ import styled from 'styled-components'; import Image from 'next/image'; interface Props { icon: string; + width?: number; + height?: number; onClick?: () => void; } const Btn = styled.button` - display: inline; cursor: pointer; background: none; border: none; - color: none; + display: flex; + align-items: center; `; -const IconButton: FC = ({ icon, onClick, className }) => { +const IconButton: FC = ({ + icon, + onClick, + className, + width = 24, + height = 24 +}) => { return ( - + ); };