import classNames from 'classnames'; import React from 'react'; interface IconWrapperProps { children: React.ReactNode; className?: string; } // Icon wrapper, with background color and hover color. same width and height const IconWrapper: React.FC = ({ children, className }) => { return (
{children}
); }; export default IconWrapper;